Commit d32d4344 authored by Alexey Spiridonov's avatar Alexey Spiridonov Committed by Facebook Github Bot

Don't use private googletest API in TestUtils.h

Summary:
Until [very recently](https://github.com/google/googletest/pull/2517), `googletest` did not print the skip message in any shape or form, so nothing can possibly depend on us customizing the skip message here.

The default is perfectly fine, let's keep it simple.

Reviewed By: yfeldblum

Differential Revision: D18051635

fbshipit-source-id: f7b889b0adf5e34a70c2579a34748bb159809b3c
parent 509999ec
......@@ -76,7 +76,7 @@
// that can identify the "Test skipped by client" in the failure message
// and convert this into a skipped test result.
#ifdef GTEST_SKIP_
#define SKIP(msg) GTEST_SKIP_("Test skipped by client")
#define SKIP(msg) GTEST_SKIP()
#else
#define SKIP() \
GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
......
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