[compiler-rt] [compiler-rt][tests] Removed the use of parentheses in compiler-rt tests with lit internal shell (PR #105729)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 23 09:22:05 PDT 2024
================
@@ -17,7 +17,8 @@ RUN: echo ....E. > %tmp/T2/5
RUN: echo .....R > %tmp/T2/6
# Check that we can report an error if file size exceeded
-RUN: (ulimit -f 1; not %run %t-FullCoverageSetTest -merge=1 %tmp/T1 %tmp/T2 2>&1 | FileCheck %s --check-prefix=SIGXFSZ)
+RUN: ulimit -f 1
+RUN: not %run %t-FullCoverageSetTest -merge=1 %tmp/T1 %tmp/T2 2>&1 | FileCheck %s --check-prefix=SIGXFSZ
----------------
Harini0924 wrote:
I agree with your suggestion. I'll revert the file to its original state.
https://github.com/llvm/llvm-project/pull/105729
More information about the llvm-commits
mailing list