Port CTest's log scraping logic to Spack#5561
Merged
Conversation
davydden
reviewed
Oct 1, 2017
|
|
||
| This file takes the regexes verbatim from there and adds some parsing | ||
| algorithms that duplicate the way CTest scrapes log files. To keep this | ||
| up to date with CTest, just sure the ``*_matches`` and ``*_exceptions`` |
f1874fe to
c4cc344
Compare
- This steals the magic regular expressions that CTest uses to parse log files and addds them to Spack. See here: https://github.com/Kitware/CMake/blob/master/Source/CTest/cmCTestBuildHandler.cxx These are BSD licensed, so the port is in `externa/ctest_log_parser.py` - We currently use these to do better filtering of errors from build output. Plan is to use them to generate good CDash output.
This was referenced Jan 28, 2018
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This steals the magic regular expressions that CTest uses to parse log files and addds them to Spack. See here:
https://github.com/Kitware/CMake/blob/master/Source/CTest/cmCTestBuildHandler.cxx
These are BSD licensed, so the port is in
externa/ctest_log_parser.pyWe currently use these to do better filtering of errors from build output. Plan is to use them to generate good CDash output.
@aprokop: this doesn't cause a regression on your error message from #5236, does it?
@pramodskumbhar: FYI