Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: netwerk/test/unit/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
*/
"use strict";
function continue_test(status) {
Assert.equal(status, Cr.NS_OK);
// TODO - mayhemer: remove this tests completely
// entry.deviceID;
// if the above line does not crash, the test was successful
do_test_finished();
}
function run_test() {
asyncOpenCacheEntry(
"disk",
Ci.nsICacheStorage.OPEN_NORMALLY,
null,
continue_test
);
do_test_pending();
}