From d78abd911c85374e9c806abd92f9a0e190afe74f Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 3 Oct 2015 19:40:53 -0700 Subject: [PATCH] gtest color for autorun tests --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 4de5056..bbb2775 100644 --- a/SConstruct +++ b/SConstruct @@ -60,5 +60,5 @@ for mode in (MODE.split(',') if MODE else ['debug']): # Get test binaries. test = do_sconscript(env, TEST_DIR, out_dir.Dir('test')) - run_tests = env.Alias('test', [test], test[0].path) + run_tests = env.Alias('test', [test], '{} --gtest_color=yes'.format(test[0].path)) env.AlwaysBuild(run_tests)