Skip to content

Commit 3e4af20

Browse files
authored
Owls 100113 - Fix for intermittent nightly failure in ItMiiSampleFmwAux.testAIFmwInitialUseCase (#3207)
* Fix for intermittent nightly test failure caused due to cleanup failure.
1 parent afdb755 commit 3e4af20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator/integration-tests/model-in-image/run-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
set -eu
1414
set -o pipefail
15-
trap '[ -z "$(jobs -pr)" ] || kill $(jobs -pr)' SIGINT SIGTERM EXIT
15+
trap 'status=$? ; set +eu ; set +o pipefail ; kill $(jobs -pr) > /dev/null 2>&1 ; exit $status' SIGINT SIGTERM EXIT
1616

1717
TESTDIR="$( cd "$(dirname "$0")" > /dev/null 2>&1 ; pwd -P )"
1818

0 commit comments

Comments
 (0)