summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/buildok/sched_test.stp4
-rwxr-xr-xtestsuite/buildok/tskschedule.stp6
2 files changed, 4 insertions, 6 deletions
diff --git a/testsuite/buildok/sched_test.stp b/testsuite/buildok/sched_test.stp
index 547b0682..3fa9187d 100755
--- a/testsuite/buildok/sched_test.stp
+++ b/testsuite/buildok/sched_test.stp
@@ -32,3 +32,7 @@ probe scheduler.balance {
log(pp())
}
+probe scheduler.ctxswitch
+{
+ printf("%d, %d, %d\n", prev_pid, next_pid, prevtsk_state);
+}
diff --git a/testsuite/buildok/tskschedule.stp b/testsuite/buildok/tskschedule.stp
deleted file mode 100755
index 5c58b192..00000000
--- a/testsuite/buildok/tskschedule.stp
+++ /dev/null
@@ -1,6 +0,0 @@
-#! stap -p4
-
-probe tskdispatch.ctxswitch
-{
- printf("%d, %d, %d\n", prev_pid, next_pid, prevtsk_state);
-}