Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [FileCheck] Make FILECHECK_OPTS useful for its test suite | Joel E. Denny | 2019-11-21 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | Without this patch, `FILECHECK_OPTS` isn't propagated to FileCheck's test suite so that `FILECHECK_OPTS` doesn't inadvertently affect test results by affecting the output of FileCheck calls under test. As a result, `FILECHECK_OPTS` is useless for debugging FileCheck's test suite. In `llvm/test/FileCheck/lit.local.cfg`, this patch provides a new subsitution, `%ProtectFileCheckOutput`, to address this problem for both `FILECHECK_OPTS` and the deprecated `FILECHECK_DUMP_INPUT_ON_FAILURE`. The rest of the patch uses `%ProtectFileCheckOutput` throughout the test suite Fixes PR40284. Reviewed By: probinson, thopre Differential Revision: https://reviews.llvm.org/D65121 | ||||
* | Add missing test for r214210. | Eli Bendersky | 2014-07-29 | 1 | -0/+1 |
| | | | | | | Thanks dblaikie for reminding me. llvm-svn: 214239 | ||||
* | Allow multiple check prefixes in FileCheck. | Matt Arsenault | 2013-11-10 | 1 | -2/+4 |
| | | | | | | | | This is useful if you want to run multiple variations of a single test, and the majority of check lines should be the same. llvm-svn: 194343 | ||||
* | [FileCheck] Fix a bug that cause FileCheck to misidentify check-prefix | Rui Ueyama | 2013-08-12 | 1 | -0/+7 |
FileCheck should check to make sure the prefix was found, and not a word containing it (e.g -check-prefix=BASEREL shouldn't match NOBASEREL). Patch by Ron Ofir. llvm-svn: 188221 |