[compiler-rt] 4c55fd9 - [fuzzer] Limit big-file-copy.test to darwin only

Roy Sundahl via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 28 17:23:28 PDT 2023


Author: Roy Sundahl
Date: 2023-03-28T17:23:22-07:00
New Revision: 4c55fd974b9f7e26ead646150eadfe549f27ad6f

URL: https://github.com/llvm/llvm-project/commit/4c55fd974b9f7e26ead646150eadfe549f27ad6f
DIFF: https://github.com/llvm/llvm-project/commit/4c55fd974b9f7e26ead646150eadfe549f27ad6f.diff

LOG: [fuzzer] Limit big-file-copy.test to darwin only

This test has to be limited to darwin due to multiple failures on other
platforms for multple reasons. (Timeout, puts() limit, etc.). This
commit modifies D146189.

Reviewed By: NoQ

Differential Revision: https://reviews.llvm.org/D147094

Added: 
    

Modified: 
    compiler-rt/test/fuzzer/big-file-copy.test

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/fuzzer/big-file-copy.test b/compiler-rt/test/fuzzer/big-file-copy.test
index 2a9f3616ad1e8..c1893eafb573e 100644
--- a/compiler-rt/test/fuzzer/big-file-copy.test
+++ b/compiler-rt/test/fuzzer/big-file-copy.test
@@ -1,3 +1,4 @@
+REQUIRES: darwin
 RUN: %cpp_compiler %S/BigFileCopy.cpp -o %t
 RUN: %run %t -runs=1 -rss_limit_mb=4096 2>big-file-out.txt; result=$?
 RUN: %run rm -f big-file.txt big-file-out.txt


        


More information about the llvm-commits mailing list