From 68cb0cb76051be893600fcb845089199f01e6839 Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 5 Jul 2005 21:27:06 +0000 Subject: 2005-07-05 Frank Ch. Eigler * 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. --- testsuite/transok/five.stp | 2 +- testsuite/transok/four.stp | 2 +- testsuite/transok/three.stp | 2 +- testsuite/transok/two.stp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'testsuite/transok') 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) } -- cgit