diff options
| author | Tim Newsome <tim@sifive.com> | 2017-09-18 11:31:08 -0700 |
|---|---|---|
| committer | Tim Newsome <tim@sifive.com> | 2017-09-18 11:31:08 -0700 |
| commit | a0259333dcd4bbba2dbfaeb7bfb9145c56cf96ca (patch) | |
| tree | fd3c7d9f2fa855553eaa73125541b2cf935992a7 /debug/testlib.py | |
| parent | 910f39c9b46a883d58f0b77ae847c535834a48da (diff) | |
| download | riscv-tests-a0259333dcd4bbba2dbfaeb7bfb9145c56cf96ca.zip riscv-tests-a0259333dcd4bbba2dbfaeb7bfb9145c56cf96ca.tar.gz riscv-tests-a0259333dcd4bbba2dbfaeb7bfb9145c56cf96ca.tar.bz2 | |
Add interrupts to MulticoreRunHaltStepiTest.
Just to hammer on anything at once, and hopefully catch weird
interactions if they exist.
Diffstat (limited to 'debug/testlib.py')
| -rw-r--r-- | debug/testlib.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/debug/testlib.py b/debug/testlib.py index 3eeace9..996c188 100644 --- a/debug/testlib.py +++ b/debug/testlib.py @@ -540,8 +540,7 @@ def header(title, dash='-', length=78): def print_log(path): header(path) - lines = open(path, "r").readlines() - for l in lines: + for l in open(path, "r"): sys.stdout.write(l) print |
