File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ pipeline {
7171 deleteDir()
7272 }
7373 }
74+ archiveArtifacts artifacts : " build/utils/hwloc/test-suite.log" , onlyIfSuccessful : false
7475 } else {
7576 node(' msvc' ) {
7677 dir(' check-msvc' ) {
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ static int check_strategy_pthread(int prebind)
213213/* Check sequential, parallel, fork */
214214/***************************************************************************/
215215
216- static void test_attach_parallel (int (* check_fn )(int ))
216+ static void test_attach (int (* check_fn )(int ))
217217{
218218 pid_t pid = fork ();
219219 assert (pid >= 0 );
@@ -284,15 +284,15 @@ int main(void)
284284#if HWLOC_HAVE_PTRACE
285285#ifdef _OPENMP
286286 test_parallel (check_strategy_openmp );
287- //test_attach_parallel (check_strategy_openmp);
287+ //test_attach (check_strategy_openmp);
288288 // OpenMP doesn't like to fork and hangs..
289289 /* test_attach_parallel(check_strategy_openmp, cpuaffinity_round_robin); */
290290 // OpenMP doesn't like to fork and hangs..
291291 /* test_attach_parallel(check_strategy_openmp, cpuaffinity_scatter); */
292292#endif // _OPENMP
293293#if HWLOC_HAVE_PTHREAD
294294 test_parallel (check_strategy_pthread );
295- test_attach_parallel (check_strategy_pthread );
295+ test_attach (check_strategy_pthread );
296296#endif // HWLOC_HAVE_PTHREAD
297297#endif // HWLOC_HAVE_PTRACE
298298#endif // HWLOC_HAVE_SYS_GETTID
You can’t perform that action at this time.
0 commit comments