From 27b0b07c7fba8675c9476e32ce868f71a181840d Mon Sep 17 00:00:00 2001 From: fche Date: Mon, 22 Jan 2007 22:44:32 +0000 Subject: 2007-01-22 Frank Ch. Eigler * config/unix.exp: New file as a master load_lib repository. * */*.exp: Removed load_lib calls. * parseko/cmdline01.stp: Swallow expected stap ERROR: message. * systemtap.syscall/syscall.exp: Added installmode_p checks. --- testsuite/systemtap.syscall/syscall.exp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'testsuite/systemtap.syscall') diff --git a/testsuite/systemtap.syscall/syscall.exp b/testsuite/systemtap.syscall/syscall.exp index 8068a6fc..9a438f06 100644 --- a/testsuite/systemtap.syscall/syscall.exp +++ b/testsuite/systemtap.syscall/syscall.exp @@ -9,6 +9,7 @@ proc test_procedure {} { } foreach filename [lsort [glob $pattern]] { set file [file tail [string range $filename 0 end-2]] + if {![installtest_p]} { untested $file; continue } target_compile $filename $wd/$file executable $flags send_log "Testing ${file}\n" set res [exec $srcdir/$subdir/test.tcl $file $filename] @@ -28,6 +29,7 @@ proc test_procedure {} { set flags "additional_flags=-m32" foreach filename [lsort [glob $pattern]] { set file [file tail [string range $filename 0 end-2]] + if {![installtest_p]} { untested $file; continue } target_compile $filename $wd/$file executable $flags send_log "Testing 32-bit ${file}\n" set res [exec $srcdir/$subdir/test.tcl $file $filename] -- cgit