]> sourceware.org Git - systemtap.git/commitdiff
PR6964: Revert "Fix hung test due to workaround for PR6964."
authorFrank Ch. Eigler <fche@elastic.org>
Wed, 12 Nov 2008 23:30:28 +0000 (18:30 -0500)
committerFrank Ch. Eigler <fche@elastic.org>
Wed, 12 Nov 2008 23:30:50 +0000 (18:30 -0500)
This reverts commit 8576ea4be5619d9c169cab385ac0d31174fdee41.

testsuite/ChangeLog
testsuite/systemtap.base/cmd_parse.exp

index 658e9c982e6c164f226f15056567c6ebb1c31e40..a59d3a05f1bc054dbad30c7ead1c043eab2a92cd 100644 (file)
@@ -1,3 +1,8 @@
+2008-11-12  Frank Ch. Eigler  <fche@elastic.org>
+
+       PR6964.
+       * systemtap.base/cmd_parse.exp: Remove exit() hack.
+
 2008-11-12  David Smith  <dsmith@redhat.com>
 
        * systemtap.context/num_args.tcl: Improved error handling of
index ef32798edbf7eaed0078ba6101a89f2ede1b6632..733881a1e349635bb8b7e2193b6009318be1d6ad 100644 (file)
@@ -5,7 +5,7 @@ if {![installtest_p]} {
     return
 }
 
-spawn stap -c {echo "hello world"} -we {probe begin {exit()}}
+spawn stap -c {echo "hello world"} -we {probe begin {}}
 expect {
     -timeout 60
     "hello world" {pass "cmd_parse1"}
@@ -14,7 +14,7 @@ expect {
 }
 wait;close
 
-spawn stap -c {echo "hello "\"world\"} -we {probe begin {exit()}}
+spawn stap -c {echo "hello "\"world\"} -we {probe begin {}}
 expect {
     -timeout 60
     "hello \"world\"" {pass "cmd_parse2"}
@@ -23,7 +23,7 @@ expect {
 }
 wait;close
 
-spawn stap -c {sh -c '(a="hello world"; echo $a)'} -we {probe begin {exit()}}
+spawn stap -c {sh -c '(a="hello world"; echo $a)'} -we {probe begin {}}
 expect {
     -timeout 60
     "hello world" {pass "cmd_parse3"}
@@ -32,7 +32,7 @@ expect {
 }
 wait;close
 
-spawn stap -c {sh -c '(a="hello "\"world\"; echo $a)'} -we {probe begin {exit()}}
+spawn stap -c {sh -c '(a="hello "\"world\"; echo $a)'} -we {probe begin {}}
 expect {
     -timeout 60
     "hello \"world\"" {pass "cmd_parse4"}
@@ -41,7 +41,7 @@ expect {
 }
 wait;close
 
-spawn stap -c {sh -c '(a="hello "world; echo $a)'} -we {probe begin {exit()}}
+spawn stap -c {sh -c '(a="hello "world; echo $a)'} -we {probe begin {}}
 expect {
     -timeout 60
     "hello world" {pass "cmd_parse5"}
@@ -50,7 +50,7 @@ expect {
 }
 wait;close
 
-spawn stap -c {bash -c '((a=42+7)); echo "The answer is $a"'} -we {probe begin {exit()}}
+spawn stap -c {bash -c '((a=42+7)); echo "The answer is $a"'} -we {probe begin {}}
 expect {
     -timeout 60
     "The answer is 49" {pass "cmd_parse6"}
@@ -59,7 +59,7 @@ expect {
 }
 wait;close
 
-spawn stap -c {sh -c '(echo "Hello World" 1>&2) > /dev/null'} -we {probe begin {exit()}}
+spawn stap -c {sh -c '(echo "Hello World" 1>&2) > /dev/null'} -we {probe begin {}}
 expect {
     -timeout 60
     "Hello World" {pass "cmd_parse7"}
This page took 0.0309469999999999 seconds and 5 git commands to generate.