diff options
author | Mark Wielaard <mjw@redhat.com> | 2009-06-24 14:26:08 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2009-06-24 14:26:08 +0200 |
commit | f77540fe71e8237942fe28cc3c2ffd5ad9f10a8d (patch) | |
tree | ba130f32847e3a38454004f2892959216913cc55 /testsuite/systemtap.exelib | |
parent | 1f8592d1a615bef5bad1f255e761664e85d9e4f0 (diff) | |
download | systemtap-steved-f77540fe71e8237942fe28cc3c2ffd5ad9f10a8d.tar.gz systemtap-steved-f77540fe71e8237942fe28cc3c2ffd5ad9f10a8d.tar.xz systemtap-steved-f77540fe71e8237942fe28cc3c2ffd5ad9f10a8d.zip |
Enable exelib.exp prelink tests except for ustack.tcl.
* testsuite/systemtap.exelib/exelib.exp: Enable prelink "yes".
* testsuite/systemtap.exelib/ustack.tcl: Ignore any prelink test (PR10323).
Diffstat (limited to 'testsuite/systemtap.exelib')
-rw-r--r-- | testsuite/systemtap.exelib/exelib.exp | 4 | ||||
-rw-r--r-- | testsuite/systemtap.exelib/ustack.tcl | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/testsuite/systemtap.exelib/exelib.exp b/testsuite/systemtap.exelib/exelib.exp index 960ebbfa..51025d56 100644 --- a/testsuite/systemtap.exelib/exelib.exp +++ b/testsuite/systemtap.exelib/exelib.exp @@ -31,7 +31,7 @@ set testsrclib "$testpath/uprobes_lib.c" set testlibdir "." set arches [list "default"] -# BUG! non-default arch breaks ustack tests. +# BUG! non-default arch breaks mark and ustack tests PR10318 and PR10272 #switch -regexp $::tcl_platform(machine) { # {^(x86_64|ppc64)$} { lappend arches "-m32" } # {^s390x$} { lappend arches "-m31" } @@ -45,7 +45,7 @@ foreach arch $arches { # Adding -O, -O2, -Os and mixing lib/exe is a bit overdone foreach opt {-O0 -O3} { - foreach libprelink {no} { # BUG! "yes" breaks uname tests + foreach libprelink {no yes} { # BUG! "yes" breaks ustack PR10323 # not done yet, "no" lib debug. foreach libdebug {yes sep} { diff --git a/testsuite/systemtap.exelib/ustack.tcl b/testsuite/systemtap.exelib/ustack.tcl index b70b8334..07dcec10 100644 --- a/testsuite/systemtap.exelib/ustack.tcl +++ b/testsuite/systemtap.exelib/ustack.tcl @@ -7,6 +7,9 @@ lib: lib_func=lib_func lib: lib_func=lib_func lib: lib_func=lib_func} +# BUG XXX PR10323 skip all prelink scenarios for now. +if {[string match "*prelink*" "$testname"]} { return } + # Only run on make installcheck if {! [installtest_p]} { untested "ustack-$testname"; return } if {! [utrace_p]} { untested "ustack-$testname"; return } |