Skip to content

Commit 05a5260

Browse files
author
kr-2003
committed
removed valgrind from oop
1 parent 70ed0f6 commit 05a5260

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

.github/actions/Build_and_Test_CppInterOp/action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ runs:
6868
fi
6969
if [[ "${{ matrix.oop-jit }}" == "On" ]]; then
7070
./unittests/CppInterOp/CppInterOpTests/unittests/bin/${{ env.BUILD_TYPE }}/CppInterOpTests --use-oop-jit
71-
if [[ "${os}" != "macos"* ]]; then
72-
valgrind --show-error-list=yes --track-origins=yes --trace-children=yes --error-exitcode=1 unittests/CppInterOp/CppInterOpTests/unittests/bin/${{ env.BUILD_TYPE }}/CppInterOpTests --use-oop-jit
73-
fi
7471
fi
7572
fi
7673
echo "CB_PYTHON_DIR=$CB_PYTHON_DIR" >> $GITHUB_ENV

unittests/CppInterOp/EnumReflectionTest.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ using namespace llvm;
1313
using namespace clang;
1414

1515
TEST(ScopeReflectionTest, IsEnumScope) {
16-
if (TestUtils::g_use_oop_jit && llvm::sys::RunningOnValgrind()) {
17-
GTEST_SKIP() << "XFAIL due to Valgrind report";
18-
}
1916
std::vector<Decl *> Decls, SubDecls;
2017
std::string code = R"(
2118
enum Switch {

0 commit comments

Comments
 (0)