aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Smith <brad@comstyle.com>2024-03-19 13:29:19 -0400
committerGitHub <noreply@github.com>2024-03-19 13:29:19 -0400
commitc7de4a39d5673b91189395f85ca6f71b1eeb115c (patch)
tree6c8a25ccf601feedc119a00afb6179b7f134c2e4
parenta7eaae4ec686ddfb8f91868fc8d053b2163f7ec7 (diff)
downloadllvm-c7de4a39d5673b91189395f85ca6f71b1eeb115c.zip
llvm-c7de4a39d5673b91189395f85ca6f71b1eeb115c.tar.gz
llvm-c7de4a39d5673b91189395f85ca6f71b1eeb115c.tar.bz2
[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.
-rw-r--r--openmp/runtime/test/lit.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/test/lit.cfg b/openmp/runtime/test/lit.cfg
index 4a457f4..a345606 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']: