We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd290bf commit db362a0Copy full SHA for db362a0
test/test_vspinproj_sycl.cpp
@@ -31,19 +31,30 @@ template<typename T>
31
class TestVSpinProj : public ::testing::Test{};
32
33
#ifdef MG_FORTRANLIKE_COMPLEX
34
+#if 0
35
using test_types = ::testing::Types<
36
std::integral_constant<int,1>,
37
std::integral_constant<int,2>,
38
std::integral_constant<int,4>,
39
std::integral_constant<int,8> >;
40
#else
41
+using test_types = ::testing::Types<
42
+ std::integral_constant<int,1> >;
43
+#endif
44
+
45
+#else
46
47
48
49
50
51
52
std::integral_constant<int,8>,
53
std::integral_constant<int,16> >;
-
54
55
56
57
58
#endif
59
60
TYPED_TEST_CASE(TestVSpinProj, test_types);
0 commit comments