From c4a2f52b046464fd0a34ac497925ec7b424b7cf6 Mon Sep 17 00:00:00 2001 From: "Damien F. Katz" Date: Thu, 1 Jul 2010 20:46:29 +0000 Subject: Fix for windows fsync, race conditions in attachments.js and the default shell used when launching windows CouchDB. git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@959781 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/script/test/changes.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'share/www/script') diff --git a/share/www/script/test/changes.js b/share/www/script/test/changes.js index b8e691b3..50649508 100644 --- a/share/www/script/test/changes.js +++ b/share/www/script/test/changes.js @@ -88,7 +88,10 @@ couchTests.changes = function(debug) { waitForSuccess(function() { lines = xhr.responseText.split("\n"); change1 = JSON.parse(lines[0]); - change2 = JSON.parse(lines[1]); + change2 = JSON.parse(lines[1]); + if (change2.seq != 2) { + throw "bad seq, try again" + } }, "bar-only"); T(change1.seq == 1) @@ -106,6 +109,9 @@ couchTests.changes = function(debug) { waitForSuccess(function() { lines = xhr.responseText.split("\n"); change3 = JSON.parse(lines[2]); + if (change3.seq != 3) { + throw "bad seq, try again" + } }); T(change3.seq == 3); -- cgit v1.2.3