9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# SCCS: @(#) result.test 1.4 97/12/08 15:07:49
if {[lsearch [namespace children] ::tcltest] == -1} {
source [file join [pwd] [file dirname [info script]] defs.tcl]
}
# Some tests require the testsaveresult command
set ::tcltest::testConfig(testsaveresult) \
[expr {[info commands testsaveresult] != {}}]
|
|
>
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# SCCS: @(#) result.test 1.4 97/12/08 15:07:49
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
namespace import ::tcltest::*
}
# Some tests require the testsaveresult command
set ::tcltest::testConfig(testsaveresult) \
[expr {[info commands testsaveresult] != {}}]
|