Skip to content

Commit 7cca036

Browse files
luke-pearsonMongoDB Bot
authored and
MongoDB Bot
committed
Import wiredtiger: f8c19440cdfc094bdfecd43ab6539a6004c36894 from branch mongodb-master
ref: 44c89ade32..f8c19440cd for: 8.0.0-rc0 WT-12338 checkpoint-stress-test should wait for all jobs to finish GitOrigin-RevId: 3f693f6f523faf1d5989f69298392650aa5b6554
1 parent 7f52529 commit 7cca036

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Diff for: src/third_party/wiredtiger/import.data

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"vendor": "wiredtiger",
33
"github": "wiredtiger/wiredtiger.git",
44
"branch": "mongodb-master",
5-
"commit": "44c89ade32cecdec8b1577439429a6b28557276b"
5+
"commit": "f8c19440cdfc094bdfecd43ab6539a6004c36894"
66
}

Diff for: src/third_party/wiredtiger/test/evergreen.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1124,16 +1124,21 @@ functions:
11241124
eval nohup $CMD > nohup.out.$i.$t 2>&1 &
11251125
done
11261126
1127+
failure=0
11271128
for t in $(seq ${no_of_procs|1}); do
11281129
ret=0
11291130
wait -n || ret=$?
11301131
if [ $ret -ne 0 ]; then
11311132
# Skip the below lines from nohup output file because they are very verbose and
11321133
# print only the errors to evergreen log file.
11331134
grep -v "Finished verifying" nohup.out.* | grep -v "Finished a checkpoint" | grep -v "thread starting"
1135+
failure=1
1136+
fail_ret=$ret
11341137
fi
1135-
exit $ret
11361138
done
1139+
if [ $failure -eq 1 ]; then
1140+
exit $fail_ret
1141+
fi
11371142
done
11381143
11391144
"compatibility test":

0 commit comments

Comments
 (0)