diff options
author | Jacob Bachmeyer <jcb62281+dev@gmail.com> | 2020-06-24 21:14:28 -0500 |
---|---|---|
committer | Jacob Bachmeyer <jcb62281+dev@gmail.com> | 2020-06-24 21:14:28 -0500 |
commit | 5bc0f51cebd001b6ba92cdd3e98e97111d96cccb (patch) | |
tree | c4e01e6f18482613975a5e9b55005095c20c75e5 /testsuite/runtest.main | |
parent | a53c5648ea1b1d195f290f51450af2e9b05a3089 (diff) | |
download | dejagnu-5bc0f51cebd001b6ba92cdd3e98e97111d96cccb.zip dejagnu-5bc0f51cebd001b6ba92cdd3e98e97111d96cccb.tar.gz dejagnu-5bc0f51cebd001b6ba92cdd3e98e97111d96cccb.tar.bz2 |
Add option to stop immediately at Tcl errors and continue by default
Diffstat (limited to 'testsuite/runtest.main')
-rw-r--r-- | testsuite/runtest.main/abort.exp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/testsuite/runtest.main/abort.exp b/testsuite/runtest.main/abort.exp index 59a934c..4ec0dc2 100644 --- a/testsuite/runtest.main/abort.exp +++ b/testsuite/runtest.main/abort.exp @@ -45,13 +45,13 @@ set tests { "simple.exp" "PASS: simple test.*\ *expected passes\[ \t\]+1\n" } - { "abort on undefined command" - "abort-undef.exp" + { "abort on undefined command with --no_keep_going" + "--no_keep_going abort-undef.exp" "PASS: running abort-undef.exp.*\ *UNRESOLVED: .* aborted.*\ *expected passes\[ \t\]+1\n.*unresolved testcases\[ \t\]+1\n" } - { "stop at divide-by-zero without --keep_going" - "abort-dbz.exp simple.exp" + { "stop at divide-by-zero with --no_keep_going" + "--no_keep_going abort-dbz.exp simple.exp" "PASS: running abort-dbz.exp.*\ *UNRESOLVED: .* aborted.*\ *expected passes\[ \t\]+1\n.*unresolved testcases\[ \t\]+1\n" } @@ -61,8 +61,8 @@ set tests { *UNRESOLVED: .* aborted.*\ *PASS: simple test.*\ *expected passes\[ \t\]+2\n" } - { "stop at auto-loaded divide-by-zero without --keep_going" - "abort-al-dbz.exp simple.exp" + { "stop at auto-loaded divide-by-zero with --no_keep_going" + "--no_keep_going abort-al-dbz.exp simple.exp" "PASS: running abort-al-dbz.exp.*\ *UNRESOLVED: .* aborted.*\ *expected passes\[ \t\]+1\n.*unresolved testcases\[ \t\]+1\n" } @@ -72,8 +72,8 @@ set tests { *UNRESOLVED: .* aborted.*\ *PASS: simple test.*\ *expected passes\[ \t\]+2\n" } - { "stop at abort without --keep_going" - "abort-undef.exp simple.exp" + { "stop at abort with --no_keep_going" + "--no_keep_going abort-undef.exp simple.exp" "PASS: running abort-undef.exp.*\ *UNRESOLVED: .* aborted.*\ *expected passes\[ \t\]+1\n.*unresolved testcases\[ \t\]+1\n" } |