From: Giacomo Travaglini Date: Thu, 11 Jun 2020 10:26:32 +0000 (+0100) Subject: ext: Fix the MakeFixture setup X-Git-Tag: v20.1.0.0~577 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3e09b8eb02bf934d843beddaa61fabc8cf900e07;p=gem5.git ext: Fix the MakeFixture setup It was simply using an invalid log_call helper JIRA: https://gem5.atlassian.net/projects/GEM5/issues/GEM5-533 Change-Id: I644b1c902a81a27beb6385690d2e43baf4c0919b Signed-off-by: Giacomo Travaglini Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/30218 Maintainer: Bobby R. Bruce Tested-by: kokoro Reviewed-by: Hoa Nguyen --- diff --git a/tests/gem5/fixture.py b/tests/gem5/fixture.py index f28201b04..fc6aee8f7 100644 --- a/tests/gem5/fixture.py +++ b/tests/gem5/fixture.py @@ -191,7 +191,7 @@ class MakeFixture(Fixture): targets = set(self.required_by) command = ['make', '-C', self.directory] command.extend([target.target for target in targets]) - log_call(command) + log_call(log.test_log, command, stderr=sys.stderr) class MakeTarget(Fixture):