[llvm] b6014b6 - [lit] Mark shtest-ulimit.py unsupported on Solaris
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Sun Sep 14 00:46:11 PDT 2025
Author: Aiden Grossman
Date: 2025-09-14T07:45:17Z
New Revision: b6014b602bc5bba643c292bca0524876f74178dd
URL: https://github.com/llvm/llvm-project/commit/b6014b602bc5bba643c292bca0524876f74178dd
DIFF: https://github.com/llvm/llvm-project/commit/b6014b602bc5bba643c292bca0524876f74178dd.diff
LOG: [lit] Mark shtest-ulimit.py unsupported on Solaris
There were some build failures because apparently running ulimit -n 50
actually means ulimit -n 48 there. Losing the test coverage on Solaris
shouldn't be a big deal.
Added:
Modified:
llvm/utils/lit/tests/shtest-ulimit.py
Removed:
################################################################################
diff --git a/llvm/utils/lit/tests/shtest-ulimit.py b/llvm/utils/lit/tests/shtest-ulimit.py
index 15336d51ca3df..e84327772d3a1 100644
--- a/llvm/utils/lit/tests/shtest-ulimit.py
+++ b/llvm/utils/lit/tests/shtest-ulimit.py
@@ -1,7 +1,9 @@
# Check the ulimit command
# ulimit does not work on non-POSIX platforms.
-# UNSUPPORTED: system-windows
+# Solaris for some reason does not respect ulimit -n, so mark it unsupported
+# as well.
+# UNSUPPORTED: system-windows, system-solaris
# RUN: not %{lit} -a -v %{inputs}/shtest-ulimit | FileCheck %s
More information about the llvm-commits
mailing list