diff options
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | testsuite/systemtap.maps/ix_clear.exp | 2 | ||||
-rw-r--r-- | testsuite/systemtap.maps/ix_clear2.exp | 2 | ||||
-rw-r--r-- | testsuite/systemtap.maps/ix_clear3.exp | 2 |
4 files changed, 7 insertions, 3 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index 6d108c4f..50829210 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2007-03-29 Frank Ch. Eigler <fche@elastic.org> + * systemtap.maps/ix_*.exp: Add catch around close. + +2007-03-29 Frank Ch. Eigler <fche@elastic.org> + * systemtap.maps/pmap_agg_overflow.exp: Robustify with respect to expected error messages and early quitting. diff --git a/testsuite/systemtap.maps/ix_clear.exp b/testsuite/systemtap.maps/ix_clear.exp index 96bba1ba..0ccc6563 100644 --- a/testsuite/systemtap.maps/ix_clear.exp +++ b/testsuite/systemtap.maps/ix_clear.exp @@ -20,5 +20,5 @@ expect { fail "$test unexpected EOF" } -re "semantic error:" { fail "$test compilation" } } -close +catch { close } wait diff --git a/testsuite/systemtap.maps/ix_clear2.exp b/testsuite/systemtap.maps/ix_clear2.exp index 702ecc4f..75a2cf2a 100644 --- a/testsuite/systemtap.maps/ix_clear2.exp +++ b/testsuite/systemtap.maps/ix_clear2.exp @@ -21,5 +21,5 @@ expect { fail "$test unexpected EOF" } -re "semantic error:" { fail "$test compilation" } } -close +catch { close } wait diff --git a/testsuite/systemtap.maps/ix_clear3.exp b/testsuite/systemtap.maps/ix_clear3.exp index 5ccde188..4ca44008 100644 --- a/testsuite/systemtap.maps/ix_clear3.exp +++ b/testsuite/systemtap.maps/ix_clear3.exp @@ -19,5 +19,5 @@ expect { fail "$test unexpected EOF" } -re "semantic error:" { fail "$test compilation" } } -close +catch { close } wait |