Skip to content

Commit

Permalink
Conditionally disable test that hangs CI (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland authored Jan 29, 2022
1 parent 358b302 commit 2cc734d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/quartic_roots_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,14 @@ void test_zero_coefficients()

int main()
{
// Quartic roots test hangs CI with MSVC-14.2 using C++17
// See: https://github.com/boostorg/math/issues/750
#if !defined(_MSC_VER) || (_MSC_VER != 1929)
test_zero_coefficients<float>();
test_zero_coefficients<double>();
#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
test_zero_coefficients<long double>();
#endif

#endif
return boost::math::test::report_errors();
}

0 comments on commit 2cc734d

Please sign in to comment.