From 235dbd3dd01160e95dcf52164b0b9f345494718e Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Fri, 10 Sep 2021 10:26:39 -0700 Subject: [PATCH] tests: Fix incorrect ref path for insttest This is part of the fix for the following nightly build error: https://www.mail-archive.com/gem5-dev@gem5.org/msg40426.html Change-Id: I60d9052b5d6dc812892b3d90baf19b8fd396f47b Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/50228 Reviewed-by: Bobby R. Bruce Reviewed-by: Jason Lowe-Power Maintainer: Bobby R. Bruce Tested-by: kokoro --- tests/gem5/insttest_se/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gem5/insttest_se/test.py b/tests/gem5/insttest_se/test.py index f0337da931..fb5c2fc8ac 100644 --- a/tests/gem5/insttest_se/test.py +++ b/tests/gem5/insttest_se/test.py @@ -40,7 +40,7 @@ else: for isa in test_progs: for binary in test_progs[isa]: - ref_path = joinpath(getcwd(), "ref", binary) + ref_path = joinpath(getcwd(), "ref") verifiers = ( verifier.MatchStdoutNoPerf(joinpath(ref_path, "simout")), )