summaryrefslogtreecommitdiff
path: root/zephyr/zmake/tests
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2021-04-13 10:55:19 -0600
committerJack Rosenthal <jrosenth@chromium.org>2021-04-13 17:02:24 +0000
commit5bc4134337bdabd601159bce047306c73f13e8f8 (patch)
tree388e2a32778ff436ecdc6d168c433e9f7f83f2e9 /zephyr/zmake/tests
parenta984234afc7763018f9b5f9e767e567fd1137e4c (diff)
downloadchrome-ec-5bc4134337bdabd601159bce047306c73f13e8f8.tar.gz
Revert "zephyr: zmake: Ensure all output is produced"
This reverts commit ee4257735632f5453b9377f9f60f5c68f6917537. Reason for revert: depends on CL:2807486, which is responsible for CQ failures (crbug.com/1198472). BUG=chromium:1198472 BRANCH=none TEST=pytest zephyr/zmake/test Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Change-Id: I5face75f3e59858b68a0b6e77d5c5b1a9881008a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2823547 Reviewed-by: Sonny Rao <sonnyrao@chromium.org>
Diffstat (limited to 'zephyr/zmake/tests')
-rw-r--r--zephyr/zmake/tests/test_zmake.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/zephyr/zmake/tests/test_zmake.py b/zephyr/zmake/tests/test_zmake.py
index f6067513cb..acd9409585 100644
--- a/zephyr/zmake/tests/test_zmake.py
+++ b/zephyr/zmake/tests/test_zmake.py
@@ -105,12 +105,3 @@ def test_filter_info():
'Running /usr/bin/ninja -C /tmp/z/vol/build-rw',
'SRAM: 48632 B 62 KB 76.60%',
}
-
-
-def test_filter_debug():
- """Test what appears on the DEBUG level"""
- recs, _ = do_test_with_log_level(logging.DEBUG)
- # The RO version has three extra lines: the SUCCESS asterisks
- # Both versions add the first 'Building' line above, with the temp dir
- expect = 321 + 318 + 2
- assert len(recs) == expect