Bug 566575 - Some tests FAIL on first run and PASS or hang on subsequent runs

Update to httpd.js from mozilla-central. server.stop() now expects a callback parameter, so pass a no-op where it's used.
This commit is contained in:
Philipp von Weitershausen 2010-06-01 15:25:23 -07:00
Родитель 266f94d67a
Коммит 2ac1f9f0f2
6 изменённых файлов: 2084 добавлений и 704 удалений

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -43,5 +43,5 @@ function run_test() {
do_check_eq(content, "This path exists and is protected");
do_check_eq(content.status, 200);
server.stop();
server.stop(function() {});
}

Просмотреть файл

@ -124,5 +124,5 @@ function run_test() {
log.info("Done!");
}
finally { server.stop(); }
finally { server.stop(function() {}); }
}

Просмотреть файл

@ -54,5 +54,5 @@ function run_test() {
log.info("Done!");
}
catch (e) { do_throw(e); }
finally { server.stop(); }
finally { server.stop(function() {}); }
}

Просмотреть файл

@ -74,5 +74,5 @@ function run_test() {
log.info("Done!");
}
catch (e) { do_throw(e); }
finally { server.stop(); }
finally { server.stop(function() {}); }
}

Просмотреть файл

@ -342,5 +342,5 @@ function run_test() {
do_check_eq(error.message, "NS_ERROR_CONNECTION_REFUSED");
do_check_eq(typeof error.stack, "string");
server.stop();
server.stop(function() {});
}