Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions unittests/CppInterOp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ else()
endif()

add_cppinterop_unittest(CppInterOpTests
EnumReflectionTest.cpp
FunctionReflectionTest.cpp
InterpreterTest.cpp
FunctionReflectionTest.cpp
EnumReflectionTest.cpp
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to order this alphabetically.

JitTest.cpp
ScopeReflectionTest.cpp
TypeReflectionTest.cpp
Expand Down
4 changes: 1 addition & 3 deletions unittests/CppInterOp/InterpreterTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ TEST(InterpreterTest, DebugFlag) {
}

TEST(InterpreterTest, Evaluate) {
#ifdef EMSCRIPTEN
GTEST_SKIP() << "Test fails for Emscipten builds";
#endif
#ifdef _WIN32
GTEST_SKIP() << "Disabled on Windows. Needs fixing.";
#endif
Expand All @@ -71,6 +68,7 @@ TEST(InterpreterTest, Evaluate) {
//EXPECT_TRUE(Cpp::Evaluate(I, "__cplusplus;") == 201402);
// Due to a deficiency in the clang-repl implementation to get the value we
// always must omit the ;
Cpp::CreateInterpreter();
EXPECT_TRUE(Cpp::Evaluate("__cplusplus") == 201402);

bool HadError;
Expand Down
Loading