summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.samples/primes.exp
diff options
context:
space:
mode:
authorWilliam Cohen <wcohen@redhat.com>2009-01-29 15:22:40 -0500
committerWilliam Cohen <wcohen@redhat.com>2009-01-29 15:22:40 -0500
commitae7f749b222f23e3904dc79c4217f0070a05591c (patch)
tree690f491c3edcb2bc25d00eee9eaf4b17f3d53e58 /testsuite/systemtap.samples/primes.exp
parentc5b08ee1ec3c731b85a3891c366527171bc56009 (diff)
downloadsystemtap-steved-ae7f749b222f23e3904dc79c4217f0070a05591c.tar.gz
systemtap-steved-ae7f749b222f23e3904dc79c4217f0070a05591c.tar.xz
systemtap-steved-ae7f749b222f23e3904dc79c4217f0070a05591c.zip
Remove uninteresting examples, args.stp, primes.stp, and testlog.stp.
Diffstat (limited to 'testsuite/systemtap.samples/primes.exp')
-rw-r--r--testsuite/systemtap.samples/primes.exp21
1 files changed, 0 insertions, 21 deletions
diff --git a/testsuite/systemtap.samples/primes.exp b/testsuite/systemtap.samples/primes.exp
deleted file mode 100644
index f99f67cc..00000000
--- a/testsuite/systemtap.samples/primes.exp
+++ /dev/null
@@ -1,21 +0,0 @@
-set test "primes"
-if {![installtest_p]} { untested $test; return }
-
-spawn stap $srcdir/$subdir/primes.stp
-set ok 0
-expect {
- -timeout 150
- -ex {odds[0] = 1} { incr ok; exp_continue }
- -ex {odds[1] = 3} { incr ok; exp_continue }
- -ex {odds[3] = 7} { incr ok; exp_continue }
- -ex {odds[4] = 9} { incr ok; exp_continue }
- -ex {evens[2] = 6} { incr ok; exp_continue }
- -ex {evens[1] = 4} { incr ok; exp_continue }
- -ex {evens[0] = 2} { incr ok; exp_continue }
- timeout { fail "$test (timeout)" }
- eof { }
-}
-#FIXME does not handle case of hanging primes.stp correctly
-wait
-
-if {$ok == 7} { pass "$test" } { fail "$test" }