Bug 1856932 - Apply local patches to googletest. r=ahal

Depends on D190255

Differential Revision: https://phabricator.services.mozilla.com/D190256
This commit is contained in:
Chris Peterson 2023-10-12 06:16:31 +00:00
Родитель 2cf7f52d23
Коммит 5cd47a376f
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -73,6 +73,8 @@
#include "gtest/internal/gtest-internal.h"
#include "gtest/internal/gtest-string.h"
#include "mozilla/Attributes.h"
GTEST_DISABLE_MSC_WARNINGS_PUSH_(4251 \
/* class A needs to have dll-interface to be used by clients of class B */)
@ -325,7 +327,7 @@ class GTEST_API_ Test {
//
// DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM.
// Instead, use the TEST or TEST_F macro.
virtual void TestBody() = 0;
MOZ_CAN_RUN_SCRIPT virtual void TestBody() = 0;
// Sets up, executes, and tears down the test.
void Run();