Bug 1402519 - Remove MOZ_CRASHREPORTER directives from testing; r=ted.mielczarek

MozReview-Commit-ID: 3QJI8o9f9UW

--HG--
extra : rebase_source : fe23e92fa060e4ca58158eb4e8d82dcf9da2d2fe
This commit is contained in:
Gabriele Svelto 2017-10-10 15:22:56 +02:00
Родитель 4a5642e26f
Коммит ade65e26df
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -6,9 +6,7 @@
#include "GTestRunner.h"
#include "gtest/gtest.h"
#include "mozilla/Attributes.h"
#ifdef MOZ_CRASHREPORTER
#include "nsICrashReporter.h"
#endif
#include "testing/TestHarness.h"
#include "prenv.h"
#ifdef XP_WIN
@ -91,7 +89,6 @@ int RunGTestFunc(int* argc, char** argv)
#ifdef XP_WIN
mozilla::ipc::windows::InitUIThread();
#endif
#ifdef MOZ_CRASHREPORTER
nsCOMPtr<nsICrashReporter> crashreporter;
char *crashreporterStr = PR_GetEnv("MOZ_CRASHREPORTER");
if (crashreporterStr && !strcmp(crashreporterStr, "1")) {
@ -112,7 +109,6 @@ int RunGTestFunc(int* argc, char** argv)
crashreporter->SetMinidumpPath(cwd);
}
}
#endif
return RUN_ALL_TESTS();
}