summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/test/unit/test_crash_moz_crash.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/crashreporter/test/unit/test_crash_moz_crash.js')
-rw-r--r--toolkit/crashreporter/test/unit/test_crash_moz_crash.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/toolkit/crashreporter/test/unit/test_crash_moz_crash.js b/toolkit/crashreporter/test/unit/test_crash_moz_crash.js
deleted file mode 100644
index 4e2b043ad..000000000
--- a/toolkit/crashreporter/test/unit/test_crash_moz_crash.js
+++ /dev/null
@@ -1,16 +0,0 @@
-function run_test()
-{
- // Try crashing with a runtime abort
- do_crash(function() {
- crashType = CrashTestUtils.CRASH_MOZ_CRASH;
- crashReporter.annotateCrashReport("TestKey", "TestValue");
- },
- function(mdump, extra) {
- do_check_eq(extra.TestKey, "TestValue");
- do_check_false("OOMAllocationSize" in extra);
- do_check_false("JSOutOfMemory" in extra);
- do_check_false("JSLargeAllocationFailure" in extra);
- },
- // process will exit with a zero exit status
- true);
-}