[Openmp-commits] [openmp] [OpenMP] Enable the affinity tests on FreeBSD, NetBSD and DragonFly (PR #85500)

Brad Smith via Openmp-commits openmp-commits at lists.llvm.org
Fri Mar 15 23:23:43 PDT 2024


https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/85500

None

>From de443588a87195143eb2048fd65cd7bffcf9fe6d Mon Sep 17 00:00:00 2001
From: Brad Smith <brad at comstyle.com>
Date: Sat, 16 Mar 2024 02:22:44 -0400
Subject: [PATCH] [OpenMP] Enable the affinity tests on FreeBSD, NetBSD and
 DragonFly

---
 openmp/runtime/test/lit.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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