diff options
Diffstat (limited to 'testsuite/parseok')
-rwxr-xr-x | testsuite/parseok/cmdline01.stp | 10 | ||||
-rwxr-xr-x | testsuite/parseok/cmdline02.stp | 5 |
2 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/parseok/cmdline01.stp b/testsuite/parseok/cmdline01.stp new file mode 100755 index 00000000..da4e6eb3 --- /dev/null +++ b/testsuite/parseok/cmdline01.stp @@ -0,0 +1,10 @@ +#! /bin/sh + +echo "output version" +./stap -V +if [ $? != 0 ]; then + exit $? +fi + +echo "output version and help" +./stap -h diff --git a/testsuite/parseok/cmdline02.stp b/testsuite/parseok/cmdline02.stp new file mode 100755 index 00000000..4ddb711d --- /dev/null +++ b/testsuite/parseok/cmdline02.stp @@ -0,0 +1,5 @@ +#! /bin/sh + +# Make sure verbose ('-v') option is accepted. + +./stap -v -p1 -e 'probe begin { exit() }' |