[Openmp-commits] [openmp] c7de4a3 - [OpenMP] Enable the affinity tests on FreeBSD, NetBSD and DragonFly (#85500)
via Openmp-commits
openmp-commits at lists.llvm.org
Tue Mar 19 10:29:23 PDT 2024
Author: Brad Smith
Date: 2024-03-19T13:29:19-04:00
New Revision: c7de4a39d5673b91189395f85ca6f71b1eeb115c
URL: https://github.com/llvm/llvm-project/commit/c7de4a39d5673b91189395f85ca6f71b1eeb115c
DIFF: https://github.com/llvm/llvm-project/commit/c7de4a39d5673b91189395f85ca6f71b1eeb115c.diff
LOG: [OpenMP] Enable the affinity tests on FreeBSD, NetBSD and DragonFly (#85500)
FreeBSD, NetBSD and DragonFly also have affinity support. So enable the tests there as well.
Added:
Modified:
openmp/runtime/test/lit.cfg
Removed:
################################################################################
diff --git a/openmp/runtime/test/lit.cfg b/openmp/runtime/test/lit.cfg
index 4a457f4cc41f75..a3456063c10fc6 100644
--- a/openmp/runtime/test/lit.cfg
+++ b/openmp/runtime/test/lit.cfg
@@ -129,7 +129,7 @@ if config.operating_system == 'NetBSD':
if config.operating_system == 'Darwin':
config.available_features.add("darwin")
-if config.operating_system in ['Linux', 'Windows']:
+if config.operating_system in ['Windows', 'Linux', 'FreeBSD', 'NetBSD', 'DragonFly']:
config.available_features.add('affinity')
if config.operating_system in ['Linux']:
More information about the Openmp-commits
mailing list