From 3e09b8eb02bf934d843beddaa61fabc8cf900e07 Mon Sep 17 00:00:00 2001 From: Giacomo Travaglini Date: Thu, 11 Jun 2020 11:26:32 +0100 Subject: [PATCH] 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 --- tests/gem5/fixture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.30.2