diff options
author | fche <fche> | 2006-02-23 22:35:40 +0000 |
---|---|---|
committer | fche <fche> | 2006-02-23 22:35:40 +0000 |
commit | 213bee8fc2b826ca8467fbbe35398450449bf082 (patch) | |
tree | 7e4a637195c704109e333906b377c7060970cf23 /testsuite | |
parent | 5ae893a12a652a31d2f96f4e81aab78c922b6ec8 (diff) | |
download | systemtap-steved-213bee8fc2b826ca8467fbbe35398450449bf082.tar.gz systemtap-steved-213bee8fc2b826ca8467fbbe35398450449bf082.tar.xz systemtap-steved-213bee8fc2b826ca8467fbbe35398450449bf082.zip |
2006-02-23 Frank Ch. Eigler <fche@elastic.org>
PR 1304
* parse.cxx (lexer): Take systemtap_session argument.
(lexer::scan): Support $1..$NNNN and @1...@NNNN expansion.
* stap.1.in: Document this.
* testsuite/semok/args.stp: New test.
* translate.cxx (var::init, emit_global): Emit code to allow
named module parameters to initialize global string/number scalars.
* stap.1.in: Don't document this yet.
PR 2334
* main.cxx (main): Clarify "-v" option repeatibility.
* stap.1.in: Ditto.
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/semok/args.stp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/semok/args.stp b/testsuite/semok/args.stp new file mode 100755 index 00000000..00475625 --- /dev/null +++ b/testsuite/semok/args.stp @@ -0,0 +1,3 @@ +#! /bin/sh + +./stap -p2 -e 'probe begin { log (@1 . string($2)) }' hello 0xdeadbeef |