mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
Bug 614474 - ERROR TEST-UNEXPECTED-FAIL | /tests/dom/indexedDB/test/test_bfcache.html | Test timed out; (Cv1) Disable this test on (all) Windows 2003 as a workaround.
r=jonas a=(test only).
This commit is contained in:
parent
1229966fac
commit
e49d1f0adf
@ -9,6 +9,19 @@
|
|||||||
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
||||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function _runTest() {
|
||||||
|
// Work around Win2k3 debug tinderboxes that may be too slow to complete this test. (Bug 614474)
|
||||||
|
if (navigator.oscpu == "Windows NT 5.2") {
|
||||||
|
todo(false, "Test disabled on (too slow debug) Windows 2003 (tinderboxes)");
|
||||||
|
|
||||||
|
finishTest();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
runTest();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
<script type="text/javascript;version=1.7">
|
<script type="text/javascript;version=1.7">
|
||||||
var gOrigMaxTotalViewers = undefined;
|
var gOrigMaxTotalViewers = undefined;
|
||||||
function setCachePref(enabled) {
|
function setCachePref(enabled) {
|
||||||
@ -58,7 +71,7 @@
|
|||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body onload="runTest();">
|
<body onload="_runTest();">
|
||||||
<iframe id="iframe"></iframe>
|
<iframe id="iframe"></iframe>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user