aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-01-05 12:35:41 -0500
committerGennadiy Civil <misterg@google.com>2018-01-05 12:35:41 -0500
commit67476c1426dc520f1ff0eb16e6c00d050d489721 (patch)
tree2a69216057c42240ae4f442b82ad488cb519b75d
parent19b5774ccf6c20d7a8d076de9e791629e72ffc0d (diff)
downloadgoogletest-67476c1426dc520f1ff0eb16e6c00d050d489721.tar.gz
googletest-67476c1426dc520f1ff0eb16e6c00d050d489721.tar.bz2
googletest-67476c1426dc520f1ff0eb16e6c00d050d489721.zip
Revert one file for now
-rw-r--r--googletest/test/gtest_output_test_.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/googletest/test/gtest_output_test_.cc b/googletest/test/gtest_output_test_.cc
index c7ccc21c..6aaba977 100644
--- a/googletest/test/gtest_output_test_.cc
+++ b/googletest/test/gtest_output_test_.cc
@@ -168,16 +168,6 @@ void SubWithTrace(int n) {
SubWithoutTrace(n);
}
-TEST(SCOPED_TRACETest, AcceptedValues) {
- SCOPED_TRACE("literal string");
- SCOPED_TRACE(std::string("std::string"));
- SCOPED_TRACE(1337); // streamable type
- const char* null_value = NULL;
- SCOPED_TRACE(null_value);
-
- ADD_FAILURE() << "Just checking that all these values work fine.";
-}
-
// Tests that SCOPED_TRACE() obeys lexical scopes.
TEST(SCOPED_TRACETest, ObeysScopes) {
printf("(expected to fail)\n");