summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/test/unit/test_crashreporter_appmem.js
blob: 29d96fe8758a691360ed36f1a64401d05f31eb81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function run_test()
{
  do_crash(function() {
	     appAddr = CrashTestUtils.saveAppMemory();
	     crashReporter.registerAppMemory(appAddr, 32);
           },
	   function(mdump, extra) {
             do_check_true(mdump.exists());
             do_check_true(mdump.fileSize > 0);
             do_check_true(CrashTestUtils.dumpCheckMemory(mdump.path));
           });
}