diff options
Diffstat (limited to 'testsuite/buildok')
-rwxr-xr-x | testsuite/buildok/cmdline01.stp | 2 | ||||
-rwxr-xr-x | testsuite/buildok/marker.stp | 2 | ||||
-rwxr-xr-x | testsuite/buildok/maxactive01.stp | 2 | ||||
-rwxr-xr-x | testsuite/buildok/scsi.stp | 2 | ||||
-rwxr-xr-x | testsuite/buildok/two.stp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/buildok/cmdline01.stp b/testsuite/buildok/cmdline01.stp index 9d087e44..72fe5f8e 100755 --- a/testsuite/buildok/cmdline01.stp +++ b/testsuite/buildok/cmdline01.stp @@ -9,7 +9,7 @@ # Test '-g' and '-D'. The code below will give an error at # compilation stage unless 'FOO' is defined. -./stap -g -p4 -DFOO=1 - <<EOF +stap -g -p4 -DFOO=1 - <<EOF function footest:string() %{ diff --git a/testsuite/buildok/marker.stp b/testsuite/buildok/marker.stp index cbf2f7fa..4d614179 100755 --- a/testsuite/buildok/marker.stp +++ b/testsuite/buildok/marker.stp @@ -21,4 +21,4 @@ then echo '}' done fi -) | ./stap -p4 - +) | stap -p4 - diff --git a/testsuite/buildok/maxactive01.stp b/testsuite/buildok/maxactive01.stp index 220e6596..afdb2cea 100755 --- a/testsuite/buildok/maxactive01.stp +++ b/testsuite/buildok/maxactive01.stp @@ -1,4 +1,4 @@ -#!./stap -p4 +#! stap -p4 probe kernel.function("sys_read").return.maxactive(3) { diff --git a/testsuite/buildok/scsi.stp b/testsuite/buildok/scsi.stp index e058327f..6f60de2f 100755 --- a/testsuite/buildok/scsi.stp +++ b/testsuite/buildok/scsi.stp @@ -12,7 +12,7 @@ if ! grep scsi_dispatch_cmd /proc/kallsyms >/dev/null 2>&1 ; then fi -./stap -p4 - << EOF +stap -p4 - << EOF probe scsi.ioentry { printf("ppname: %s, %d, %d, %d\n", probefunc(), diff --git a/testsuite/buildok/two.stp b/testsuite/buildok/two.stp index f3b89616..2fedf654 100755 --- a/testsuite/buildok/two.stp +++ b/testsuite/buildok/two.stp @@ -1,6 +1,6 @@ #! /bin/sh -./stap -p4 -g $@ - <<'END' +stap -p4 -g $@ - <<'END' %{ #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18) |