Commit 7b772a7b authored by Mark Isaacson's avatar Mark Isaacson Committed by facebook-github-bot-4

Give folly/symbolizer an explicit main function

Summary: Don't automatically generate the main function for this test.

Reviewed By: @Gownta

Differential Revision: D2375814
parent 0c63ead9
......@@ -76,3 +76,10 @@ TEST(SignalHandler, Simple) {
}}} // namespaces
// Can't use initFacebookLight since that would install its own signal handlers
// Can't use initFacebookNoSignals since we cannot depend on common
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
......@@ -116,3 +116,10 @@ TEST_F(ElfCacheTest, SignalSafeElfCache) {
}
}}} // namespaces
// Can't use initFacebookLight since that would install its own signal handlers
// Can't use initFacebookNoSignals since we cannot depend on common
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment