[llvm] [lit] Disable ulimit-nodarwin test on FreeBSD (PR #173155)

via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 20 07:58:17 PST 2025


https://github.com/aokblast created https://github.com/llvm/llvm-project/pull/173155

FreeBSD does not support using ulimit to grow up max file size. This characteristic is inherited by Darwin and thus we pass this test on FreeBSD as well.

>From d6df0ff8ee147dcec53943bc5525bb012863c6aa Mon Sep 17 00:00:00 2001
From: ShengYi Hung <aokblast at FreeBSD.org>
Date: Sat, 20 Dec 2025 23:55:26 +0800
Subject: [PATCH] [lit] Disable ulimit-nodarwin test on FreeBSD

FreeBSD does not support using ulimit to grow up max file size. This
characteristic is inherited by Darwin and thus we pass this test on
FreeBSD as well.
---
 llvm/utils/lit/tests/shtest-ulimit-nondarwin.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/utils/lit/tests/shtest-ulimit-nondarwin.py b/llvm/utils/lit/tests/shtest-ulimit-nondarwin.py
index d5340a7d2efb9..be2627be366ed 100644
--- a/llvm/utils/lit/tests/shtest-ulimit-nondarwin.py
+++ b/llvm/utils/lit/tests/shtest-ulimit-nondarwin.py
@@ -2,7 +2,7 @@
 
 # ulimit does not work on non-POSIX platforms.
 # These tests are specific to options that Darwin does not support.
-# UNSUPPORTED: system-windows, system-cygwin, system-darwin, system-aix, system-solaris
+# UNSUPPORTED: system-windows, system-cygwin, system-darwin, system-aix, system-solaris, system-freebsd
 
 # RUN: not %{lit} -v %{inputs}/shtest-ulimit-nondarwin | FileCheck %s
 



More information about the llvm-commits mailing list