michael@0: function run_test() michael@0: { michael@0: do_crash(function() { michael@0: appAddr = CrashTestUtils.saveAppMemory(); michael@0: crashReporter.registerAppMemory(appAddr, 32); michael@0: }, michael@0: function(mdump, extra) { michael@0: do_check_true(mdump.exists()); michael@0: do_check_true(mdump.fileSize > 0); michael@0: do_check_true(CrashTestUtils.dumpCheckMemory(mdump.path)); michael@0: }); michael@0: }