@@ -16,12 +16,13 @@ namespace fs = std::filesystem;
16
16
17
17
fs::path hyp2f1_tables_path{fs::path (XSREF_TABLES_PATH) / " scipy_special_tests" / " hyp2f1" };
18
18
19
+
19
20
TEST_CASE (" hyp2f1 complex scipy.special cases" , " [hyp2f1][complex][scipy-special]" ) {
20
21
auto [input, output, tol] = GENERATE (
21
22
xsf_test_cases<
22
23
std::tuple<double , double , double , std::complex<double >>, std::tuple<std::complex<double >, bool >, double >(
23
24
hyp2f1_tables_path / " In_d_d_d_cd-cd.parquet" , hyp2f1_tables_path / " Out_d_d_d_cd-cd.parquet" ,
24
- hyp2f1_tables_path / " Err_d_d_d_cd-cd_gcc-linux-x86_64 .parquet"
25
+ hyp2f1_tables_path / ( " Err_d_d_d_cd-cd_ " + get_platform_str () + " .parquet" )
25
26
)
26
27
);
27
28
auto [a, b, c, z] = input;
@@ -46,7 +47,7 @@ TEST_CASE("hyp2f1 real scipy.special cases", "[hyp2f1][real][scipy-special]") {
46
47
xsf_test_cases<
47
48
std::tuple<double , double , double , double >, std::tuple<double , bool >, double >(
48
49
hyp2f1_tables_path / " In_d_d_d_d-d.parquet" , hyp2f1_tables_path / " Out_d_d_d_d-d.parquet" ,
49
- hyp2f1_tables_path / " Err_d_d_d_d-d_gcc-linux-x86_64 .parquet"
50
+ hyp2f1_tables_path / ( " Err_d_d_d_d-d_ " + get_platform_str () + " .parquet" )
50
51
)
51
52
);
52
53
auto [a, b, c, z] = input;
0 commit comments