Skip to content
Open
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: 1 addition & 3 deletions tree/dataframe/test/dataframe_vary.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,8 @@ TEST(RDFVary, RequireVariationsHaveConsistentType)
std::runtime_error);
}

// throwing exceptions from jitted code cause problems on windows and MacOS+M1
// throwing exceptions from jitted code cause problems on windows
#if !defined(_MSC_VER) || defined(R__ENABLE_BROKEN_WIN_TESTS)
#if !(defined(R__MACOSX) && defined(__arm64__))
TEST(RDFVary, RequireVariationsHaveConsistentTypeJitted)
{
// non-jitted Define, jitted Vary with incompatible type
Expand Down Expand Up @@ -230,7 +229,6 @@ TEST(RDFVaryDeathTest, JitFailureThrowsInsteadOfCrashing)
::testing::ExitedWithCode(0), "");
}
#endif
#endif

TEST(RDFVary, RequireReturnTypeIsRVec)
{
Expand Down
Loading