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:
Родитель
266f94d67a
Коммит
2ac1f9f0f2
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -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() {});
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче