summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
authorTad Marshall <tad@10gen.com>2012-10-28 20:14:48 -0400
committerTad Marshall <tad@10gen.com>2012-10-28 20:14:48 -0400
commit1bd2fc12ef9de5b705dc1d127d02c397441c77e8 (patch)
tree9e75d4da56ebdc7973bb9524f5ccbdb3d43edb34 /jstests
parent9f6f027835114db83c2ff0e3091641d29ded2a08 (diff)
downloadmongo-1bd2fc12ef9de5b705dc1d127d02c397441c77e8.tar.gz
SERVER-7492 use --logappend in jstests/slowNightly/sync6_slow.js
The code isn't smart about reserved Windows filenames and tries to rotate the "log file" NUL. Workaround this by using --logappend so the rename step is skipped.
Diffstat (limited to 'jstests')
-rw-r--r--jstests/slowNightly/sync6_slow.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/slowNightly/sync6_slow.js b/jstests/slowNightly/sync6_slow.js
index c96671ca105..76dce68eeab 100644
--- a/jstests/slowNightly/sync6_slow.js
+++ b/jstests/slowNightly/sync6_slow.js
@@ -6,7 +6,7 @@
// thread scheduling.
var bitbucket = _isWindows() ? "NUL" : "/dev/null";
-test = new SyncCCTest("sync6", {logpath: bitbucket});
+test = new SyncCCTest("sync6", {logpath: bitbucket, logappend: ""});
// Startup another process to handle our commands to the cluster, mostly so it's
// easier to read.