From 9c0c0e4652824a0bf8f4da2175278b129fac6809 Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 15 Mar 2005 22:38:27 +0000 Subject: 2005-03-15 Frank Ch. Eigler * TODO: New file. Include some probe-point-provider syntax examples. * parse.cxx (lexer::scan, parser::parse_literal): Support hex, octal numbers via strtol. (parse_probe, parse_probe_point): Modify for dotted syntax. * staptree.cxx: Ditto. * parsetest.cxx, semtest.cxx: Print parse/sem results even if .stp files were given on command line. * parse.h, staptree.h: Rename probe_point_spec -> probe_point. * runtest.sh: New test-runner front-end script. * Makefile.am: Use it for TESTS_ENVIRONMENT. * testsuite/*: Update probe point syntax. Add a bunch of new tests. --- testsuite/parseok/two.stp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuite/parseok/two.stp') diff --git a/testsuite/parseok/two.stp b/testsuite/parseok/two.stp index 6ab3823e..b6b843de 100755 --- a/testsuite/parseok/two.stp +++ b/testsuite/parseok/two.stp @@ -1,6 +1,6 @@ #! parsetest -probe kernel:systemcall("foo") +probe syscall (231) { array[idx] << value; if (global > 5) { global -- } else ; @@ -11,7 +11,7 @@ function foo () { return 0; } -probe systemtap:end +probe end { foo ("value", 4+8); } -- cgit