diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-05-23 10:17:41 -0400 |
---|---|---|
committer | wenji <wjhuang@dhcp-beijing-cdc-10-182-120-233.cn.oracle.com> | 2008-05-25 21:33:34 -0400 |
commit | 83f0ef99ac154aae4f49497424f780d85d055b35 (patch) | |
tree | df967c6dbffc2de690245f46742560e5a12e90a0 | |
parent | 9a6d39be65b70cd825ab78019581b0388508ada4 (diff) | |
download | systemtap-steved-83f0ef99ac154aae4f49497424f780d85d055b35.tar.gz systemtap-steved-83f0ef99ac154aae4f49497424f780d85d055b35.tar.xz systemtap-steved-83f0ef99ac154aae4f49497424f780d85d055b35.zip |
testsuite cleanup: kfailing some FOO-all-probes tests
-rw-r--r-- | testsuite/ChangeLog | 8 | ||||
-rwxr-xr-x | testsuite/buildok/nfs-all-probes.stp | 2 | ||||
-rwxr-xr-x | testsuite/buildok/rpc-all-probes.stp | 2 | ||||
-rw-r--r-- | testsuite/systemtap.pass1-4/buildok.exp | 3 |
4 files changed, 13 insertions, 2 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index fa6e4fad..841dc8e3 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -1,3 +1,11 @@ +2008-05-23 Frank Ch. Eigler <fche@elastic.org> + + * buildok/{nfs,rpc}-all-probes.stp: Suppress warnings from empty probe + bodies. + * systemtap.pass1-4/buidok.exp: Mark above as kfail due to bug #4413. + While there, also mark the process_test kfail for #1155, though even + it fails only sporadically. + 2008-05-21 Frank Ch. Eigler <fche@elastic.org> PR 6538 diff --git a/testsuite/buildok/nfs-all-probes.stp b/testsuite/buildok/nfs-all-probes.stp index fb492c8c..ebff3472 100755 --- a/testsuite/buildok/nfs-all-probes.stp +++ b/testsuite/buildok/nfs-all-probes.stp @@ -1,4 +1,4 @@ -#! stap -p4 +#! stap -wp4 // Tests if all probes in nfs.stp and nfs_proc.stp are resolvable. diff --git a/testsuite/buildok/rpc-all-probes.stp b/testsuite/buildok/rpc-all-probes.stp index 2ecc42c7..c85ff80b 100755 --- a/testsuite/buildok/rpc-all-probes.stp +++ b/testsuite/buildok/rpc-all-probes.stp @@ -1,4 +1,4 @@ -#! stap -p4 +#! stap -wp4 // Tests if all probes in rpc.stp are resolvable. diff --git a/testsuite/systemtap.pass1-4/buildok.exp b/testsuite/systemtap.pass1-4/buildok.exp index 07580550..08d50fb5 100644 --- a/testsuite/systemtap.pass1-4/buildok.exp +++ b/testsuite/systemtap.pass1-4/buildok.exp @@ -9,6 +9,9 @@ foreach file [lsort [glob -nocomplain $srcdir/$self/*.stp]] { buildok/twentysix.stp {setup_kfail 4105 *-*-*} buildok/twentyseven.stp {setup_kfail 4166 *-*-*} buildok/sched_test.stp {setup_kfail 1155 *-*-*} + buildok/process_test.stp {setup_kfail 1155 *-*-*} + buildok/rpc-all-probes.stp {setup_kfail 4413 *-*-*} + buildok/nfs-all-probes.stp {setup_kfail 4413 *-*-*} } if {$rc == 0} { pass $test } else { fail $test } } |