We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd95dc4 commit 6796f02Copy full SHA for 6796f02
regtest.py
@@ -555,6 +555,7 @@ def test_suite(argv):
555
test.compile_successful = True
556
# Compute compile time
557
test.build_time = time.time() - test.build_time
558
+ suite.log.log(f"Compilation time: {test.build_time:.3f} s")
559
560
# copy the make.out into the web directory
561
shutil.copy(f"{output_dir}/{test.name}.make.out", suite.full_web_dir)
@@ -732,6 +733,7 @@ def test_suite(argv):
732
733
suite.run_test(test, base_cmd)
734
735
test.wall_time = time.time() - test.wall_time
736
+ suite.log.log(f"Execution time: {test.wall_time:.3f} s")
737
738
# Check for performance drop
739
if test.return_code == 0 and test.check_performance:
0 commit comments