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.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
| compiler-rt/test/fuzzer/big-file-copy.test | ||
|---|---|---|
| 2 | A quick grep suggests that this should say REQUIRES: system-darwin. | |
| compiler-rt/test/fuzzer/big-file-copy.test | ||
|---|---|---|
| 2 | Hmm, looks like clang uses system-darwin but compiler-rt uses darwin. Probably both are fine, given that it's the same LIT under the hood. Or maybe they define it differently in lit config 🤔 In any case LGTM then! | |
| compiler-rt/test/fuzzer/big-file-copy.test | ||
|---|---|---|
| 2 | compiler-rt/test/fuzzer/lit.cfg.py: 47 if sys.platform.startswith('win') or sys.platform.startswith('cygwin'):
48 config.available_features.add('windows')
49
50 if sys.platform.startswith('darwin'):
51 config.available_features.add('darwin')Looks like this is a libfuzzer-specific item in available_features (which may or may not have a slightly different meaning). | |
A quick grep suggests that this should say REQUIRES: system-darwin.