From f25f07a54547b521d5498e34953a5c0958a70808 Mon Sep 17 00:00:00 2001 From: fche Date: Mon, 24 Sep 2007 21:18:24 +0000 Subject: replace examples buildok testing * systemtap.samples/examples.exp: New file, replacing * buildok/examples.stp: Removed. --- testsuite/buildok/example.stp | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 testsuite/buildok/example.stp (limited to 'testsuite/buildok/example.stp') diff --git a/testsuite/buildok/example.stp b/testsuite/buildok/example.stp deleted file mode 100755 index 1051a247..00000000 --- a/testsuite/buildok/example.stp +++ /dev/null @@ -1,34 +0,0 @@ -#! /bin/sh - -example_stp=`ls ${SRCDIR}/examples/*.stp` -sub_stp=`ls ${SRCDIR}/examples/small_demos/*.stp` - -ret=0 - -for i in $example_stp $sub_stp -do -#iostat-scsi, sigmon need parameter -case $i in - (*iostat-scsi.stp) - stap -p4 $i 5 - ;; - (*sigmon.stp) - stap -p4 -x 1234 $i SIGKILL - ;; - (*small_demos/keyhack.stp) - stap -p4 -g $i - ;; - *) - stap -p4 $i - ;; -esac - -if [ $? -eq 0 ];then - echo "PASS: $i" -else - echo "FAIL: $i" - ret=1 -fi -done - -exit $ret -- cgit