We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98a57b4 commit 1161e3cCopy full SHA for 1161e3c
unittests/CppInterOp/InterpreterTest.cpp
@@ -59,9 +59,6 @@ TEST(InterpreterTest, DebugFlag) {
59
}
60
61
TEST(InterpreterTest, Evaluate) {
62
-#ifdef EMSCRIPTEN
63
- GTEST_SKIP() << "Test fails for Emscipten builds";
64
-#endif
65
#ifdef _WIN32
66
GTEST_SKIP() << "Disabled on Windows. Needs fixing.";
67
#endif
@@ -71,6 +68,7 @@ TEST(InterpreterTest, Evaluate) {
71
68
//EXPECT_TRUE(Cpp::Evaluate(I, "__cplusplus;") == 201402);
72
69
// Due to a deficiency in the clang-repl implementation to get the value we
73
70
// always must omit the ;
+ Cpp::CreateInterpreter();
74
EXPECT_TRUE(Cpp::Evaluate("__cplusplus") == 201402);
75
76
bool HadError;
0 commit comments