Diff
Not logged in

Differences From Artifact [be4cc889f6]:

To Artifact [481c191ea8]:


12
13
14
15
16
17
18


19


20
21
22
23
24
25
26
# RCS: @(#) 

if {[lsearch [namespace children] ::tcltest] == -1} {
    source [file join [pwd] [file dirname [info script]] defs.tcl]
}

test platform-1.1 {TclpSetVariables: tcl_platform} {


    lsort [array names tcl_platform]


} {byteOrder machine os osVersion platform user}

# cleanup
::tcltest::cleanupTests
return









>
>
|
>
>







12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# RCS: @(#) 

if {[lsearch [namespace children] ::tcltest] == -1} {
    source [file join [pwd] [file dirname [info script]] defs.tcl]
}

test platform-1.1 {TclpSetVariables: tcl_platform} {
    interp create i
    i eval {unset tcl_platform(debug)}
    set result [i eval {lsort [array names tcl_platform]}]
    interp delete i
    set result
} {byteOrder machine os osVersion platform user}

# cleanup
::tcltest::cleanupTests
return