From 59296f27182be87a86978c2756854307836a6818 Mon Sep 17 00:00:00 2001 From: SiCong Li Date: Wed, 20 Nov 2019 14:17:46 +0000 Subject: COMPMID-2916 Disable validation and benchmark tests by default Signed-off-by: SiCong Li Change-Id: I9b38f7f634495df475840871cf84fa1bad2d3bf5 Reviewed-on: https://review.mlplatform.org/c/2330 Reviewed-by: Kurtis Charnock Comments-Addressed: Kurtis Charnock Reviewed-by: Michele Di Giorgio Tested-by: Georgios Pinitas --- tests/SConscript | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/SConscript b/tests/SConscript index fe05185920..5275cd3288 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -32,9 +32,8 @@ SConscript('./framework/SConscript', duplicate=0) variables = [ BoolVariable("benchmark_examples", "Build benchmark examples programs", True), BoolVariable("validate_examples", "Build validate examples programs", True), - #FIXME Switch the following two options to False before releasing - BoolVariable("validation_tests", "Build validation test programs", True), - BoolVariable("benchmark_tests", "Build benchmark test programs", True), + BoolVariable("validation_tests", "Build validation test programs", False), + BoolVariable("benchmark_tests", "Build benchmark test programs", False), ("test_filter", "Pattern to specify the tests' filenames to be compiled", "*.cpp") ] -- cgit v1.2.1