This is an archive of the discontinued LLVM Phabricator instance.

[libFuzzer] Properly configure tests for Windows.
ClosedPublic

Authored by mpividori on Feb 3 2017, 6:49 PM.

Details

Summary

This configuration is necessary, and is included in all the tests suites, like the one for clang, for the main llvm repository, etc.
We need to execute: config.test_format = lit.formats.ShTest(False)
Otherwise, lit will try to use bash, which generated the problems mentioned in: https://reviews.llvm.org/D29515 , or cmd prompt which generates a lot of problems.

Diff Detail

Repository
rL LLVM

Event Timeline

mpividori created this revision.Feb 3 2017, 6:49 PM
rnk accepted this revision.Feb 6 2017, 10:25 AM
rnk added a subscriber: rnk.

lgtm

Eventually we should do a global cleanup to fold this logic into the TestRunner so we don't have to duplicate this junk in ever lit.cfg.

This revision is now accepted and ready to land.Feb 6 2017, 10:25 AM
This revision was automatically updated to reflect the committed changes.