We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e660c73 commit 526851aCopy full SHA for 526851a
run_tests.py
@@ -25,10 +25,12 @@
25
["$D/tests/tst_cpu_add_spots_double_precision.py","poly"], #OpenMP (required)
26
]
27
tst_list_parallel = []
28
+tst_list_parallel_slow = []
29
if libtbx.env.build_options.enable_openmp_if_possible:
- tst_list_parallel = tst_list_parallel + OpenMP_optional + OpenMP_required
30
+ tst_list_parallel += OpenMP_optional
31
+ tst_list_parallel_slow += OpenMP_required
32
else:
- tst_list = tst_list + OpenMP_optional
33
+ tst_list += OpenMP_optional
34
35
prepend = []
36
OPT = libtbx.env.build_options
0 commit comments