diff options
author | fche <fche> | 2007-01-22 22:44:32 +0000 |
---|---|---|
committer | fche <fche> | 2007-01-22 22:44:32 +0000 |
commit | 27b0b07c7fba8675c9476e32ce868f71a181840d (patch) | |
tree | 2de207c44c0caf3c9416a148df644d218c61f6b9 /testsuite/systemtap.syscall/syscall.exp | |
parent | 9e0aa6367ff955f6e4d6ed044fd6ea0392888f6f (diff) | |
download | systemtap-steved-27b0b07c7fba8675c9476e32ce868f71a181840d.tar.gz systemtap-steved-27b0b07c7fba8675c9476e32ce868f71a181840d.tar.xz systemtap-steved-27b0b07c7fba8675c9476e32ce868f71a181840d.zip |
2007-01-22 Frank Ch. Eigler <fche@redhat.com>
* 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.
Diffstat (limited to 'testsuite/systemtap.syscall/syscall.exp')
-rw-r--r-- | testsuite/systemtap.syscall/syscall.exp | 2 |
1 files changed, 2 insertions, 0 deletions
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] |