4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00

77 lines
1.7 KiB
Plaintext
Raw Normal View History

2000-02-17 19:38:33 +00:00
source "site.exp"
2000-09-03 03:58:18 +00:00
source "$srcdir/winsup.api/known_bugs.tcl"
2000-02-17 19:38:33 +00:00
if { ! [isnative] } {
verbose "skipping winsup.api because it's not native"
return
}
set rv ""
2000-09-03 03:58:18 +00:00
set orig_path "$env(PATH)"
set test_filter ""
if { [info exists env(CYGWIN_TESTSUITE_TESTS)] } {
set test_filter "$env(CYGWIN_TESTSUITE_TESTS)"
}
proc ws_spawn {cmd} {
2000-02-17 19:38:33 +00:00
global rv
verbose "running $cmd\n"
try {
set msg [exec -ignorestderr {*}$cmd "2>@1"]
set rv 0
} trap CHILDSTATUS {results options} {
verbose "returned $::errorCode\n"
set msg $results
set rv 1
}
verbose -log "$msg"
return $rv
2000-02-17 19:38:33 +00:00
}
verbose "Filter: $test_filter"
foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.c $srcdir/$subdir/*/*.{cc,c}]] {
if { $test_filter != "" && ! [regexp $test_filter $src] } {
verbose -log "Skipping $src"
continue
}
2000-02-17 19:38:33 +00:00
regsub "^$srcdir/$subdir/" $src "" testcase
regsub ".c$" $testcase "" base
regsub ".*/" $base "" basename
regsub "/" $base "-" tmpfile
set exec "./winsup.api/$base.exe"
2000-02-17 19:38:33 +00:00
2000-09-03 03:58:18 +00:00
if { [lsearch -exact $xfail_list $basename] >= 0 } {
set xfail_expected 1
2000-02-17 19:38:33 +00:00
setup_xfail "*-*-*"
} else {
2000-09-03 03:58:18 +00:00
set xfail_expected 0
2000-02-17 19:38:33 +00:00
clear_xfail
}
if [ file exists "$srcdir/$subdir/$basename.exp" ] then {
source "$srcdir/$subdir/$basename.exp"
2000-02-17 19:38:33 +00:00
} else {
if { $verbose } {
set redirect_output "./$tmpfile.log"
} else {
set redirect_output /dev/null
}
file mkdir $tmpdir/$tmpfile
set env(PATH) "$runtime_root:$env(PATH)"
ws_spawn "$cygrun $exec $testdll_tmpdir/$tmpfile > $redirect_output"
file delete -force $tmpdir/$tmpfile
set env(PATH) "$orig_path"
if { $rv } {
fail "$testcase"
} else {
pass "$testcase"
}
2000-02-17 19:38:33 +00:00
}
}