mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
22 lines
517 B
JavaScript
22 lines
517 B
JavaScript
function run_test()
|
|
{
|
|
do_get_profile();
|
|
|
|
if (!newCacheBackEndUsed()) {
|
|
do_check_true(true, "This test doesn't run when the old cache back end is used since the behavior is different");
|
|
return;
|
|
}
|
|
|
|
asyncOpenCacheEntry("http://b/", "disk", Ci.nsICacheStorage.OPEN_NORMALLY, null,
|
|
new OpenCallback(NEW|DOOMED, "b1m", "b1d", function(entry) {
|
|
entry.asyncDoom(
|
|
new EvictionCallback(true, function() {
|
|
finish_cache2_test();
|
|
})
|
|
);
|
|
})
|
|
);
|
|
|
|
do_test_pending();
|
|
}
|