Add an extra guard for the issue encountered in #7207
Peter Rabbitson committed
Apr 24, 2020 at 14:20 UTC
3590b1750dd894f7737bc6a047333a80a12f4040
1 file changed
+2
-2
test/sharness/t0054-dag-car-import-export.sh
+2
-2
@@ -45,7 +45,7 @@ do_import() {
45
result=$?
46
47
rm -f spin.gc &>/dev/null
48
- wait
48
+ wait || true # work around possible trigger of a bash bug on overloaded circleci
49
exit $result
50
)
51
}
@@ -124,7 +124,7 @@ EOE
124
> basic_fifo_import_actual
125
result=$?
126
127
- wait
127
+ wait || true # work around possible trigger of a bash bug on overloaded circleci
128
exit "$result"
129
)
130
'