mirror of https://github.com/mongodb/mongo
8 lines
304 B
JavaScript
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);
|
|
}
|
|
};
|