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 {
71
71
deleteDir()
72
72
}
73
73
}
74
+ archiveArtifacts artifacts : " build/utils/hwloc/test-suite.log" , onlyIfSuccessful : false
74
75
} else {
75
76
node(' msvc' ) {
76
77
dir(' check-msvc' ) {
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ static int check_strategy_pthread(int prebind)
213
213
/* Check sequential, parallel, fork */
214
214
/***************************************************************************/
215
215
216
- static void test_attach_parallel (int (* check_fn )(int ))
216
+ static void test_attach (int (* check_fn )(int ))
217
217
{
218
218
pid_t pid = fork ();
219
219
assert (pid >= 0 );
@@ -284,15 +284,15 @@ int main(void)
284
284
#if HWLOC_HAVE_PTRACE
285
285
#ifdef _OPENMP
286
286
test_parallel (check_strategy_openmp );
287
- //test_attach_parallel (check_strategy_openmp);
287
+ //test_attach (check_strategy_openmp);
288
288
// OpenMP doesn't like to fork and hangs..
289
289
/* test_attach_parallel(check_strategy_openmp, cpuaffinity_round_robin); */
290
290
// OpenMP doesn't like to fork and hangs..
291
291
/* test_attach_parallel(check_strategy_openmp, cpuaffinity_scatter); */
292
292
#endif // _OPENMP
293
293
#if HWLOC_HAVE_PTHREAD
294
294
test_parallel (check_strategy_pthread );
295
- test_attach_parallel (check_strategy_pthread );
295
+ test_attach (check_strategy_pthread );
296
296
#endif // HWLOC_HAVE_PTHREAD
297
297
#endif // HWLOC_HAVE_PTRACE
298
298
#endif // HWLOC_HAVE_SYS_GETTID
You can’t perform that action at this time.
0 commit comments