diff options
Diffstat (limited to 'tests/exec.test')
-rw-r--r-- | tests/exec.test | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/exec.test b/tests/exec.test index 6e4718a..4058ae9 100644 --- a/tests/exec.test +++ b/tests/exec.test @@ -18,20 +18,14 @@ if {"::tcltest" ni [namespace children]} { package require tcltest 2.5 namespace import -force ::tcltest::* } +source [file join [file dirname [info script]] tcltests.tcl] -loadTestedCommands -catch [list package require -exact tcl::test [info patchlevel]] -package require tcltests - -# All tests require the "exec" command. -# Skip them if exec is not defined. -testConstraint exec [llength [info commands exec]] # Some skips when running in a macOS CI environment testConstraint noosxCI [expr {![info exists ::env(MAC_CI)]}] unset -nocomplain path -# Utilities that are like bourne shell stalwarts, but cross-platform. +# Utilities that are like Bourne shell stalwarts, but cross-platform. set path(echo) [makeFile { puts -nonewline [lindex $argv 0] foreach str [lrange $argv 1 end] { |