Gabe Black has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/50589 )

Change subject: tests: Use --silent-redirect when running gem5 tests.
......................................................................

tests: Use --silent-redirect when running gem5 tests.

The redirects are to temp files which are going to be deleted at the end
of the test, and there's no reason to clutter up the output with nonsense
paths to non-existent files.

Change-Id: Id312b1f25f03d7c57318ca0c58902e4193bd1e91
---
M tests/gem5/suite.py
1 file changed, 3 insertions(+), 2 deletions(-)



diff --git a/tests/gem5/suite.py b/tests/gem5/suite.py
index 3b0f1f8..cef3e7d 100644
--- a/tests/gem5/suite.py
+++ b/tests/gem5/suite.py
@@ -168,9 +168,10 @@
         gem5 = fixtures[constants.gem5_binary_fixture_name].path
         command = [
             gem5,
-            '-d',  # Set redirect dir to tempdir.
+            '-d', # Set redirect dir to tempdir.
             tempdir,
-            '-re',# TODO: Change to const. Redirect stdout and stderr
+            '-re', # TODO: Change to const. Redirect stdout and stderr
+            '--silent-redirect',
         ]
         command.extend(_gem5_args)
         command.append(config)

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/50589
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: Id312b1f25f03d7c57318ca0c58902e4193bd1e91
Gerrit-Change-Number: 50589
Gerrit-PatchSet: 1
Gerrit-Owner: Gabe Black <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Reply via email to