diff options
Diffstat (limited to 'testsuite/parseko')
-rwxr-xr-x | testsuite/parseko/preprocess14.stp | 4 | ||||
-rwxr-xr-x | testsuite/parseko/preprocess15.stp | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/parseko/preprocess14.stp b/testsuite/parseko/preprocess14.stp new file mode 100755 index 00000000..7946f0e4 --- /dev/null +++ b/testsuite/parseko/preprocess14.stp @@ -0,0 +1,4 @@ +#! stap -p1 + +# incomplete compound condition +%( arch == "2.6" && %? probe begin() { } %) diff --git a/testsuite/parseko/preprocess15.stp b/testsuite/parseko/preprocess15.stp new file mode 100755 index 00000000..c4aaa9ce --- /dev/null +++ b/testsuite/parseko/preprocess15.stp @@ -0,0 +1,4 @@ +#! stap -p1 + +# bad compound condition +%( arch == "2.6" && || arch == "2.66" %? probe begin() { } %) |