From e043aaffb3a91c64aa1b5cb6143b9cb36f6b3c56 Mon Sep 17 00:00:00 2001 From: mrg Date: Wed, 3 Feb 2021 15:17:28 -0800 Subject: [PATCH] Don't print DRC/LVS/PEX run stats in regress.py --- compiler/tests/regress.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/tests/regress.py b/compiler/tests/regress.py index bd8ba019..285f8c7d 100755 --- a/compiler/tests/regress.py +++ b/compiler/tests/regress.py @@ -107,9 +107,9 @@ else: test_result = test_runner.run(final_suite) -import verify -verify.print_drc_stats() -verify.print_lvs_stats() -verify.print_pex_stats() +# import verify +# verify.print_drc_stats() +# verify.print_lvs_stats() +# verify.print_pex_stats() sys.exit(not test_result.wasSuccessful())