diff options
author | Harmen Stoppels <harmenstoppels@gmail.com> | 2021-11-17 11:24:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-17 11:24:14 +0100 |
commit | cc62689504e8f8b24b41b77cba90dab142150353 (patch) | |
tree | 6f54521120db734050f42ef618f6c34a742cf618 | |
parent | 9260c384086461bc5c9ff14e70a7a231bf511330 (diff) | |
download | spack-cc62689504e8f8b24b41b77cba90dab142150353.tar.gz spack-cc62689504e8f8b24b41b77cba90dab142150353.tar.bz2 spack-cc62689504e8f8b24b41b77cba90dab142150353.tar.xz spack-cc62689504e8f8b24b41b77cba90dab142150353.zip |
Fix overly generic exceptions in log parser (#27413)
This type of error is skipped:
make[1]: *** [Makefile:222: /tmp/user/spack-stage/.../spack-src/usr/lib/julia/libopenblas64_.so.so] Error 1
but it's useful to have it, especially when a package sets a variable
incorrectly in makefiles
-rw-r--r-- | lib/spack/external/ctest_log_parser.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/spack/external/ctest_log_parser.py b/lib/spack/external/ctest_log_parser.py index 61cc6df029..2b2746003a 100644 --- a/lib/spack/external/ctest_log_parser.py +++ b/lib/spack/external/ctest_log_parser.py @@ -150,8 +150,6 @@ _error_exceptions = [ ": note", " ok", "Note:", - "makefile:", - "Makefile:", ":[ \\t]+Where:", "[^ :]:[0-9]+: Warning", "------ Build started: .* ------", @@ -189,8 +187,6 @@ _warning_exceptions = [ "/usr/.*/X11/XResource\\.h:[0-9]+: war.*: ANSI C\\+\\+ forbids declaration", "WARNING 84 :", "WARNING 47 :", - "makefile:", - "Makefile:", "warning: Clock skew detected. Your build may be incomplete.", "/usr/openwin/include/GL/[^:]+:", "bind_at_load", |