From aed739fbf407cd0e9e122f12c69db260d9bb47fd Mon Sep 17 00:00:00 2001 From: Lingxuan Zuo Date: Tue, 20 Oct 2020 15:21:29 +0800 Subject: [PATCH] [Log] Ignore callstacktrace test for windows (#11413) --- src/ray/util/logging_test.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ray/util/logging_test.cc b/src/ray/util/logging_test.cc index d3db179eb..5096c32c3 100644 --- a/src/ray/util/logging_test.cc +++ b/src/ray/util/logging_test.cc @@ -113,6 +113,7 @@ std::string TestFunctionLevel2() { return TestFunctionLevel1(); } +#ifndef _WIN32 TEST(PrintLogTest, CallstackTraceTest) { auto ret0 = TestFunctionLevel0(); EXPECT_TRUE(ret0.find("TestFunctionLevel0") != std::string::npos); @@ -121,6 +122,7 @@ TEST(PrintLogTest, CallstackTraceTest) { auto ret2 = TestFunctionLevel2(); EXPECT_TRUE(ret2.find("TestFunctionLevel2") != std::string::npos); } +#endif } // namespace ray