Skip to content

Commit

Permalink
set -e on all testdata scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony O'Brien committed Feb 22, 2017
1 parent ec891df commit 5db4107
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion testdata/test_exit_code.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
#!/bin/bash -e

exit $1
2 changes: 1 addition & 1 deletion testdata/test_sigint_multiple.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/bash -e

INT_REQUIRED=$1
INT_COUNTER=0
Expand Down
2 changes: 1 addition & 1 deletion testdata/test_sigint_wait.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/bash -e

WAIT_TIME=$1

Expand Down

0 comments on commit 5db4107

Please sign in to comment.