summaryrefslogtreecommitdiffstats
path: root/toolkit/crashreporter/test/unit/test_crash_abort.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/crashreporter/test/unit/test_crash_abort.js')
-rw-r--r--toolkit/crashreporter/test/unit/test_crash_abort.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/toolkit/crashreporter/test/unit/test_crash_abort.js b/toolkit/crashreporter/test/unit/test_crash_abort.js
deleted file mode 100644
index 67008346f..000000000
--- a/toolkit/crashreporter/test/unit/test_crash_abort.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
- * http://creativecommons.org/publicdomain/zero/1.0/ */
-
-function run_test()
-{
- // Try crashing with an abort().
- do_crash(function() {
- crashType = CrashTestUtils.CRASH_ABORT;
- crashReporter.annotateCrashReport("TestKey", "TestValue");
- },
- function(mdump, extra) {
- do_check_eq(extra.TestKey, "TestValue");
- },
- // process will exit with a zero exit status
- true);
-}