From 35be45d4ce758fa1d2294052502e3cf0b36a4b82 Mon Sep 17 00:00:00 2001 From: dyoungworth Date: Thu, 11 Jul 2019 10:01:26 -0700 Subject: [PATCH] Remove code accidentally left for testing ctest fix --- tests/TestRunner/TestRunner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestRunner/TestRunner.py b/tests/TestRunner/TestRunner.py index 38c16243b0..1be65c25d8 100755 --- a/tests/TestRunner/TestRunner.py +++ b/tests/TestRunner/TestRunner.py @@ -335,8 +335,8 @@ def run_simulation_test(basedir, options): if options.keep_logs == 'NONE' or options.keep_logs == 'FAILED' and res: print("Deleting old logs in {}".format(wd)) traces = get_traces(wd, options.log_format) - #for trace in traces: - # os.remove(trace) + for trace in traces: + os.remove(trace) if options.keep_simdirs == 'NONE' or options.keep_simdirs == 'FAILED' and res: print("Delete {}".format(os.path.join(wd, 'simfdb'))) shutil.rmtree(os.path.join(wd, 'simfdb'))