From 7a51f102b35c40073719fe6c6b276486506967ae Mon Sep 17 00:00:00 2001 From: sidheshenator Date: Thu, 2 Apr 2015 12:16:18 -0400 Subject: [PATCH] timing test does not impact overall test --- test/script/regression.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/script/regression.py b/test/script/regression.py index ac3649d6ee..156a4f1b07 100755 --- a/test/script/regression.py +++ b/test/script/regression.py @@ -247,8 +247,8 @@ class TestRunner(object): if test_data.main_config.timing: print("Run time test passed: ", test_data.run_time_passed) test_data.overall_passed = (test_data.html_report_passed and - test_data.errors_diff_passed and test_data.db_diff_passed and - test_data.run_time_passed) + test_data.errors_diff_passed and test_data.db_diff_passed) + # test_data.run_time_passed not considered for test_data.overall_passed # otherwise, do the usual else: test_data.overall_passed = (test_data.html_report_passed and