diff options
author | fche <fche> | 2007-03-14 15:20:45 +0000 |
---|---|---|
committer | fche <fche> | 2007-03-14 15:20:45 +0000 |
commit | 5ba96b9022078048e9f916431d3b8792a9dc8615 (patch) | |
tree | 8a9ef21f25cbb117e2473d96730a07f89e2559d2 /testsuite/parseko | |
parent | 3b6fd2ea934f1d75174e5a786701c90f32553fe8 (diff) | |
download | systemtap-steved-5ba96b9022078048e9f916431d3b8792a9dc8615.tar.gz systemtap-steved-5ba96b9022078048e9f916431d3b8792a9dc8615.tar.xz systemtap-steved-5ba96b9022078048e9f916431d3b8792a9dc8615.zip |
2007-03-13 Frank Ch. Eigler <fche@redhat.com>
PR 4171.
* Makefile.am (check, installcheck): Pass build-tree pointers
in environment variables.
* configure.ac: Run separate configury for testsuite/.
* configure, Makefile.in: Regenerated.
2007-03-14 Frank Ch. Eigler <fche@redhat.com>
PR 4171.
* configure.ac, configure, aclocal.m4: New files to permit
testsuite-only build tree.
* Makefile.am (RUNTEST): Arrange a crazy concoction of
environment/make variable for runtest.
* Makefile.in: Regenerated.
* */*.stp: Switch test cases from "./stap" to "stap" throughout.
* lib/systemtap.exp: Assume/trace environment variables.
(stap_run_batch): Add "#! stap"-handling hack.
Diffstat (limited to 'testsuite/parseko')
-rwxr-xr-x | testsuite/parseko/cmdline01.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/cmdline02.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/cmdline03.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/cmdline04.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/cmdline05.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/cmdline06.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/maxactive01.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/maxactive02.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/maxactive03.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/maxactive04.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/ten.stp | 2 | ||||
-rwxr-xr-x | testsuite/parseko/twentythree.stp | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/testsuite/parseko/cmdline01.stp b/testsuite/parseko/cmdline01.stp index 6913f3ca..c793c43e 100755 --- a/testsuite/parseko/cmdline01.stp +++ b/testsuite/parseko/cmdline01.stp @@ -2,5 +2,5 @@ # -M (merge) option is only valid for bulk mode -./stap -p1 -M -e 'probe begin { exit() }' >/dev/null 2>&1 # otherwise, ERROR: message confuses dejagnu +stap -p1 -M -e 'probe begin { exit() }' >/dev/null 2>&1 # otherwise, ERROR: message confuses dejagnu exit $? diff --git a/testsuite/parseko/cmdline02.stp b/testsuite/parseko/cmdline02.stp index 57289c2d..feca762b 100755 --- a/testsuite/parseko/cmdline02.stp +++ b/testsuite/parseko/cmdline02.stp @@ -5,4 +5,4 @@ # # NUM must be between 1 and 64 -./stap -p1 -s 0 -e 'probe begin { exit() }' +stap -p1 -s 0 -e 'probe begin { exit() }' diff --git a/testsuite/parseko/cmdline03.stp b/testsuite/parseko/cmdline03.stp index 7bd4a5c0..9b4b2553 100755 --- a/testsuite/parseko/cmdline03.stp +++ b/testsuite/parseko/cmdline03.stp @@ -5,4 +5,4 @@ # # NUM must be between 1 and 5 -./stap -p0 -e 'probe begin { exit() }' +stap -p0 -e 'probe begin { exit() }' diff --git a/testsuite/parseko/cmdline04.stp b/testsuite/parseko/cmdline04.stp index b6450954..d58cd70d 100755 --- a/testsuite/parseko/cmdline04.stp +++ b/testsuite/parseko/cmdline04.stp @@ -2,4 +2,4 @@ # multiple '-e' (script) options cannot be specified -./stap -p1 -e 'probe begin { exit() }' -e 'probe end { exit() }' +stap -p1 -e 'probe begin { exit() }' -e 'probe end { exit() }' diff --git a/testsuite/parseko/cmdline05.stp b/testsuite/parseko/cmdline05.stp index f6075c5f..0f43d7b4 100755 --- a/testsuite/parseko/cmdline05.stp +++ b/testsuite/parseko/cmdline05.stp @@ -2,4 +2,4 @@ # You can't specify '-M', '-b', and '-o' simultaneously. -./stap -p1 -b -M -o stdout -e 'probe begin { exit() }' +stap -p1 -b -M -o stdout -e 'probe begin { exit() }' diff --git a/testsuite/parseko/cmdline06.stp b/testsuite/parseko/cmdline06.stp index 4c23757b..6bb310f8 100755 --- a/testsuite/parseko/cmdline06.stp +++ b/testsuite/parseko/cmdline06.stp @@ -2,4 +2,4 @@ # Bad TMPDIR environment variable should cause exit -TMPDIR=/dev/null/BADTMPDIR ./stap -p1 -e 'probe begin { exit() }' +TMPDIR=/dev/null/BADTMPDIR stap -p1 -e 'probe begin { exit() }' diff --git a/testsuite/parseko/maxactive01.stp b/testsuite/parseko/maxactive01.stp index d0a8c4da..237a56e2 100755 --- a/testsuite/parseko/maxactive01.stp +++ b/testsuite/parseko/maxactive01.stp @@ -1,4 +1,4 @@ -#!./stap -p2 +#! stap -p2 # maxactive with "begin" probe diff --git a/testsuite/parseko/maxactive02.stp b/testsuite/parseko/maxactive02.stp index e2fdb996..72155299 100755 --- a/testsuite/parseko/maxactive02.stp +++ b/testsuite/parseko/maxactive02.stp @@ -1,4 +1,4 @@ -#!./stap -p1 +#! stap -p1 # maxactive with a non-number argument diff --git a/testsuite/parseko/maxactive03.stp b/testsuite/parseko/maxactive03.stp index e61cce7c..29ed041b 100755 --- a/testsuite/parseko/maxactive03.stp +++ b/testsuite/parseko/maxactive03.stp @@ -1,4 +1,4 @@ -#!./stap -p1 +#! stap -p1 # maxactive with a non-number argument diff --git a/testsuite/parseko/maxactive04.stp b/testsuite/parseko/maxactive04.stp index b7fcaea9..9ec15842 100755 --- a/testsuite/parseko/maxactive04.stp +++ b/testsuite/parseko/maxactive04.stp @@ -1,4 +1,4 @@ -#!./stap -p1 +#! stap -p1 # maxactive with a numeric expression argument diff --git a/testsuite/parseko/ten.stp b/testsuite/parseko/ten.stp index 0a5f338e..46adcb9f 100755 --- a/testsuite/parseko/ten.stp +++ b/testsuite/parseko/ten.stp @@ -1,6 +1,6 @@ #! /bin/sh -./stap -p1 -g - <<'END' +stap -p1 -g - <<'END' probe foo { %{ /* not a valid place for embedded code */ %} diff --git a/testsuite/parseko/twentythree.stp b/testsuite/parseko/twentythree.stp index ee941d61..3390a607 100755 --- a/testsuite/parseko/twentythree.stp +++ b/testsuite/parseko/twentythree.stp @@ -1,3 +1,3 @@ #! /bin/sh -./stap -p1 $SYSTEMTAP_TAPSET/indent.stp +stap -p1 $SYSTEMTAP_TAPSET/indent.stp |