summaryrefslogtreecommitdiffstats
path: root/testsuite/transok
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/transok')
-rwxr-xr-xtestsuite/transok/buildko.stp2
-rwxr-xr-xtestsuite/transok/nine.stp2
-rwxr-xr-xtestsuite/transok/tval-opt.stp4
3 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/transok/buildko.stp b/testsuite/transok/buildko.stp
index 4387b0f1..a334f23e 100755
--- a/testsuite/transok/buildko.stp
+++ b/testsuite/transok/buildko.stp
@@ -9,6 +9,6 @@ do
if grep -q /bin/sh $file; then
true # can't override stap options
else
- ./stap -p3 $file
+ stap -p3 $file
fi
done
diff --git a/testsuite/transok/nine.stp b/testsuite/transok/nine.stp
index 82ebc4a9..9e13774b 100755
--- a/testsuite/transok/nine.stp
+++ b/testsuite/transok/nine.stp
@@ -1,6 +1,6 @@
#! /bin/sh
-./stap -p3 -g $@ - <<'END'
+stap -p3 -g $@ - <<'END'
%{
void just_some_declaration () {}
diff --git a/testsuite/transok/tval-opt.stp b/testsuite/transok/tval-opt.stp
index 4f1c0b06..76dcfd24 100755
--- a/testsuite/transok/tval-opt.stp
+++ b/testsuite/transok/tval-opt.stp
@@ -3,7 +3,7 @@
set -e
script='probe kernel.function("kbd_keycode") { if ($keycode==50) $keycode=49 }'
-s1=`./stap -p3 -g -e "$script" | sum`
-s2=`./stap -p3 -g -u -e "$script" | sum`
+s1=`stap -p3 -g -e "$script" | sum`
+s2=`stap -p3 -g -u -e "$script" | sum`
test x"$s1" == x"$s2"