Index: openmp/runtime/test/lit.cfg =================================================================== --- openmp/runtime/test/lit.cfg +++ openmp/runtime/test/lit.cfg @@ -103,6 +103,9 @@ if 'Linux' in config.operating_system: config.available_features.add("linux") +if config.operating_system == 'NetBSD': + config.available_features.add("netbsd") + if config.operating_system in ['Linux', 'Windows']: config.available_features.add('affinity') Index: openmp/runtime/test/tasking/omp_taskwait.c =================================================================== --- openmp/runtime/test/tasking/omp_taskwait.c +++ openmp/runtime/test/tasking/omp_taskwait.c @@ -1,3 +1,5 @@ +// This test is known to be fragile on NetBSD kernel at the moment. +// UNSUPPORTED: netbsd // RUN: %libomp-compile-and-run #include #include