diff options
author | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2009-07-14 22:56:46 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925> | 2009-07-14 22:56:46 +0000 |
commit | 8bdb31e0540c46de485b362178f60e8bb947ff43 (patch) | |
tree | 439e910bb34bbb3856fc471122220c1fff16ed5f /scons | |
parent | 89080477aee9bd91536c9fb47bc31c62ea7d75bb (diff) | |
download | googletest-8bdb31e0540c46de485b362178f60e8bb947ff43.tar.gz googletest-8bdb31e0540c46de485b362178f60e8bb947ff43.tar.bz2 googletest-8bdb31e0540c46de485b362178f60e8bb947ff43.zip |
Adds the command line flags needed for test shuffling. Most code by Josh Kelley.
Diffstat (limited to 'scons')
-rw-r--r-- | scons/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scons/SConscript b/scons/SConscript index 2fa519b1..2faf8645 100644 --- a/scons/SConscript +++ b/scons/SConscript @@ -332,7 +332,7 @@ GtestBinary(env_without_rtti, 'gtest_no_rtti_test', None, # Use the GTEST_BUILD_SAMPLES build variable to control building of samples. # In your SConstruct file, add # vars = Variables() -# vars.Add(BoolVariable('GTEST_BUILD_SAMPLES', 'Build samples', True)) +# vars.Add(BoolVariable('GTEST_BUILD_SAMPLES', 'Build samples', False)) # my_environment = Environment(variables = vars, ...) # Then, in the command line use GTEST_BUILD_SAMPLES=true to enable them. if env.get('GTEST_BUILD_SAMPLES', False): |