summaryrefslogtreecommitdiff
path: root/zephyr/zmake/zmake/zmake.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-03-28 15:55:40 +1300
committerCommit Bot <commit-bot@chromium.org>2021-03-31 06:11:48 +0000
commit0bbbfcb3ce24a118a6ef54c06b00d8e88ecf8fae (patch)
treeb17c5548195332f1dd3feb832ec0c7ce84affa05 /zephyr/zmake/zmake/zmake.py
parentadfaecd09ed03f133ede8425c123690b1f09fb4b (diff)
downloadchrome-ec-0bbbfcb3ce24a118a6ef54c06b00d8e88ecf8fae.tar.gz
zephyr: zmake: Move CRITICAL output to ERROR
There really isn't an obvious distinction here between something that is critical and something that is just an error. They are both errors and stop the build, requiring user action. Drop this test and let everything that doesn't otherwise match become an ERROR. BUG=b:177096315 BRANCH=none TEST=manually test by running zmake build / configure Signed-off-by: Simon Glass <sjg@chromium.org> Change-Id: I94342d9425046285efde8ec9d9c79e79ad9ba181 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2789796 Reviewed-by: Yuval Peress <peress@chromium.org>
Diffstat (limited to 'zephyr/zmake/zmake/zmake.py')
-rw-r--r--zephyr/zmake/zmake/zmake.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/zephyr/zmake/zmake/zmake.py b/zephyr/zmake/zmake/zmake.py
index 315d92d6e5..51897f0cd4 100644
--- a/zephyr/zmake/zmake/zmake.py
+++ b/zephyr/zmake/zmake/zmake.py
@@ -41,9 +41,6 @@ def ninja_log_level_override(line, default_log_level):
'No change to Kconfig header',
]
- if line.startswith("FAILED: "):
- return logging.CRITICAL
-
# Herewith a long list of things which are really for debugging, not
# development. Return logging.DEBUG for each of these.