blob: 0422223a01289d2b945e7da632f06317e15cd2c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# This file contains tests for the tkMain.c file.
#
# This file contains a collection of tests for one or more of the Tcl
# built-in commands. Sourcing this file into Tcl runs the tests and
# generates output for errors. No output means no errors were found.
#
# Copyright (c) 1997 by Sun Microsystems, Inc.
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
#
# RCS: @(#) $Id: main.test,v 1.5 1999/04/16 01:51:39 stanton Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
source [file join [pwd] [file dirname [info script]] defs.tcl]
}
test main-1.1 {StdinProc} {unixOnly} {
catch {removeFile script}
set fd [open script w]
puts $fd {
close stdin; exit
}
close $fd
if {[catch {exec $::tcltest::tktest <script} msg]} {
set error 1
} else {
set error 0
}
file delete -force script
list $error $msg
} {0 {}}
# cleanup
catch {removeFile script}
::tcltest::cleanupTests
return
|