summaryrefslogtreecommitdiffstats
path: root/testsuite/transok
diff options
context:
space:
mode:
authorfche <fche>2005-07-05 21:27:06 +0000
committerfche <fche>2005-07-05 21:27:06 +0000
commit68cb0cb76051be893600fcb845089199f01e6839 (patch)
treea7cc0be2e7beaad1f44374fee215c0234cbf4419 /testsuite/transok
parentf4b2849102b2a195dd79bede8ec58f46fb99435e (diff)
downloadsystemtap-steved-68cb0cb76051be893600fcb845089199f01e6839.tar.gz
systemtap-steved-68cb0cb76051be893600fcb845089199f01e6839.tar.xz
systemtap-steved-68cb0cb76051be893600fcb845089199f01e6839.zip
2005-07-05 Frank Ch. Eigler <fche@redhat.com>
* elaborate.h (systemtap_session): Add more command-line arguments. * staptree.h (verbose): Bad global, no donut. * elaborate.cxx: Temporarily disable verbose variable access. * main.cxx: Support more arguments, build/run passes. Revamp temporary file generation and partial-pass output generation. * tapsets.cxx, translate.cxx: Emit just enough extra punctuation and fluff to make generated probe pass -Werror. * buildrun.cxx, buildrun.h: New files for passes 4/5. Partial support for build pass, nothing on probe execution yet. * testsuite/transok/*.stp: Force just -p3, now that -p4/5 exist. * Makefile.am, Makefile.in: Corresponding changes.
Diffstat (limited to 'testsuite/transok')
-rwxr-xr-xtestsuite/transok/five.stp2
-rwxr-xr-xtestsuite/transok/four.stp2
-rwxr-xr-xtestsuite/transok/three.stp2
-rwxr-xr-xtestsuite/transok/two.stp2
4 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/transok/five.stp b/testsuite/transok/five.stp
index 5cd50cb6..1b132409 100755
--- a/testsuite/transok/five.stp
+++ b/testsuite/transok/five.stp
@@ -1,4 +1,4 @@
-#! stap
+#! stap -p3
probe begin
{
diff --git a/testsuite/transok/four.stp b/testsuite/transok/four.stp
index daad4f5d..c63f5dd0 100755
--- a/testsuite/transok/four.stp
+++ b/testsuite/transok/four.stp
@@ -1,4 +1,4 @@
-#! stap
+#! stap -p3
function f () {
return 0
diff --git a/testsuite/transok/three.stp b/testsuite/transok/three.stp
index 07703f90..475b832f 100755
--- a/testsuite/transok/three.stp
+++ b/testsuite/transok/three.stp
@@ -1,4 +1,4 @@
-#! stap
+#! stap -p3
function f1 (a, b) {
c = 1;
diff --git a/testsuite/transok/two.stp b/testsuite/transok/two.stp
index 848934a7..903a0202 100755
--- a/testsuite/transok/two.stp
+++ b/testsuite/transok/two.stp
@@ -1,4 +1,4 @@
-#! stap
+#! stap -p3
probe begin, end { 2; }
function poo (zoo) { n = poo2 (8); return "foo" . zoo }
function poo2 (zoo) { return poo3 (2 + 4 * zoo) }