[compiler-rt] b62c39f - [fuzzer][test] Disable big-file-copy.test for everything but macOS

Roy Sundahl via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 20 12:19:36 PDT 2023


Author: Roy Sundahl
Date: 2023-04-20T12:19:30-07:00
New Revision: b62c39f9ef2af3dd398a67a5e9e8d7d0a097d941

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

LOG: [fuzzer][test] Disable big-file-copy.test for everything but macOS

This test is heavy on test resources and involves moving a large 2GB+ file
across an ssh connection when testing on remote devices. Exclude all tests
except for macOS testing (on host). Remote device testing for macOS may
eventually cause a problem on macOS as well w/o better handling of tests
that require more resource/time than we currently handle.
    Introduced by:
        https://reviews.llvm.org/D146189
    Subsequent exclusion of all but darwin by:
        https://reviews.llvm.org/D147094
    Subsequent exclusion of tvOS and watchOS by:
        https://reviews.llvm.org/D147502
    Subsequent exclusion of all but macOS...

rdar://107570309

Reviewed By: yln, thetruestblue

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

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 766c90d5bdced..9565ed4e0bca2 100644
--- a/compiler-rt/test/fuzzer/big-file-copy.test
+++ b/compiler-rt/test/fuzzer/big-file-copy.test
@@ -1,5 +1,5 @@
 REQUIRES: darwin
-UNSUPPORTED: tvos || watchos
+UNSUPPORTED: ios
 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