diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-04-09 00:45:36 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-04-09 00:56:32 -0700 |
commit | d260b01748a29d15a5f1d498934aa286a017db97 (patch) | |
tree | 310527ac2f867615d18d3eb4d6c6f598811589f8 /run_one_test | |
parent | 35af489c740a94c9326c9c416d34616e85b1bcb9 (diff) | |
download | mu-d260b01748a29d15a5f1d498934aa286a017db97.tar.gz |
6200 - --dump is not needed for incremental traces
This undoes commit 5764, which was ill-considered. We already had incremental prints at that point to 'last_run'. As long as we don't run out of RAM on large traces, there doesn't seem any need to print to stderr. Now '--dump' is only needed when juggling multiple traces.
Diffstat (limited to 'run_one_test')
-rwxr-xr-x | run_one_test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/run_one_test b/run_one_test index f5aed24b..6e81bb41 100755 --- a/run_one_test +++ b/run_one_test @@ -20,4 +20,5 @@ fi set -e ./translate_subx_debug init.linux $(echo $FILES) /tmp/run_one_test.subx -CFLAGS=$CFLAGS ./bootstrap --debug --trace run a.elf +echo running +CFLAGS=$CFLAGS ./bootstrap --trace run a.elf |