Skip to content

Commit

Permalink
tests: Don't set -e for compound tests managed by test_run
Browse files Browse the repository at this point in the history
The test_run wrapper should handle all return codes, we don't
want to bail out early.
  • Loading branch information
evgenyz committed Jan 11, 2025
1 parent 83709fc commit ad6c37e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/DS/test_ds_misc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Author:
# Martin Preisler <mpreisle@redhat.com>

set -e -o pipefail
set -o pipefail

. $builddir/tests/test_common.sh
. $srcdir/test_ds_common.sh
Expand Down
2 changes: 1 addition & 1 deletion tests/DS/test_rds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Author:
# Martin Preisler <mpreisle@redhat.com>

set -e -o pipefail
set -o pipefail

. $builddir/tests/test_common.sh
. $srcdir/test_ds_common.sh
Expand Down
2 changes: 1 addition & 1 deletion tests/DS/test_sds_eval.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Author:
# Martin Preisler <mpreisle@redhat.com>

set -e -o pipefail
set -o pipefail

. $builddir/tests/test_common.sh
. $srcdir/test_ds_common.sh
Expand Down
2 changes: 1 addition & 1 deletion tests/DS/test_sds_fix_from_results.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Author:
# Martin Preisler <mpreisle@redhat.com>

set -e -o pipefail
set -o pipefail

. $builddir/tests/test_common.sh

Expand Down
2 changes: 1 addition & 1 deletion tests/DS/test_sds_fix_from_source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Author:
# Martin Preisler <mpreisle@redhat.com>

set -e -o pipefail
set -o pipefail

. $builddir/tests/test_common.sh

Expand Down

0 comments on commit ad6c37e

Please sign in to comment.