diff options
author | Palmer Dabbelt <palmer@dabbelt.com> | 2017-05-17 08:28:16 -0700 |
---|---|---|
committer | Palmer Dabbelt <palmer@dabbelt.com> | 2017-05-17 08:28:16 -0700 |
commit | d9c4402414895e6235376e8d2c6323e6ee292b23 (patch) | |
tree | d09c4dc2c7ac480903c25d96c44eb8154c57fd5b | |
parent | 50e52c73766bae4919b83e06e53fde4cb20e2ff2 (diff) | |
download | riscv-tests-debug-0.13.zip riscv-tests-debug-0.13.tar.gz riscv-tests-debug-0.13.tar.bz2 |
Show the debug logs to stdout, to avoid travis timeoutsdebug-0.13
-rw-r--r-- | debug/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/Makefile b/debug/Makefile index 5726883..f835507 100644 --- a/debug/Makefile +++ b/debug/Makefile @@ -17,7 +17,7 @@ pylint: --$(subst .log,,$@) \ --sim_cmd $(RISCV)/bin/$(RISCV_SIM) \ --server_cmd $(RISCV)/bin/openocd \ - > $@ 2>&1 || (sed s/^/$@:\ / $@ && false) + | tee $@ 2>&1 || (sed s/^/$@:\ / $@ && false) clean: rm -f *.log *.pyc |