Files
mongo/jstests/libs/pause_after_populate.js
Philip Stoev 01efdc0bc0 SERVER-106619 Golden Test: provide a way to pause the test after data loading (#37684)
GitOrigin-RevId: c79ea83f6e37c25f1fb20cd45fcd5b04ae257a33
2025-06-24 18:31:13 +00:00

8 lines
303 B
JavaScript

// If resmoke has been run with --pauseAfterPopulate, this function will sleep indefinitely.
export const checkPauseAfterPopulate = function() {
if (TestData.pauseAfterPopulate) {
jsTestLog("TestData.pauseAfterPopulate is set. Pausing indefinitely ...");
sleep(2147483647);
}
};