1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: omit tests for American options in 3D and 4D on ppc64el, as
precision issues with stopt have been raised multiple times on this arch.
Author: Pierre Gruet <pgt@debian.org>
Forwarded: xavier.warin@gmail.com
Last-Update: 2022-03-24
--- a/test/c++/functional/testAmericanOptionForSparse.cpp
+++ b/test/c++/functional/testAmericanOptionForSparse.cpp
@@ -126,6 +126,7 @@
}
+#if !defined(__powerpc__)
BOOST_AUTO_TEST_CASE(testAmericanSparseBasket3D)
{
// dimension
@@ -160,3 +161,4 @@
// cubic
testAmericanSparse(false, nDim, nbSimul, level, 3, referenceValue, accuracyEqual);
}
+#endif
|