mongo/jstests/libs/pause_after_populate.js

8 lines
304 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);
}
};