summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_cache2-17-evict-all.js
blob: 3033e42d6b140df6b009cbbb83d0ba2c972fce11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function run_test()
{
  do_get_profile();

  var svc = get_cache_service();
  svc.clear();

  var storage = getCacheStorage("disk");
  storage.asyncVisitStorage(
    new VisitCallback(0, 0, [], function() {
      finish_cache2_test();
    }),
    true
  );

  do_test_pending();
}