1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/netwerk/test/unit/test_cache2-17-evict-all.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +function run_test() 1.5 +{ 1.6 + do_get_profile(); 1.7 + 1.8 + var svc = get_cache_service(); 1.9 + svc.clear(); 1.10 + 1.11 + var storage = getCacheStorage("disk"); 1.12 + storage.asyncVisitStorage( 1.13 + new VisitCallback(0, 0, [], function() { 1.14 + finish_cache2_test(); 1.15 + }), 1.16 + true 1.17 + ); 1.18 + 1.19 + do_test_pending(); 1.20 +}