summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2013-04-09 01:02:05 (GMT)
committerNico Weber <nicolasweber@gmx.de>2013-04-09 01:02:05 (GMT)
commit94f999b681ea4ced1cc27b29e0db77d72554ecf9 (patch)
treedbbb548a169566768a4d490a54742d4260f17db4 /configure.py
parent1baebab74d036f40eddf47a361145305038fa78d (diff)
downloadNinja-94f999b681ea4ced1cc27b29e0db77d72554ecf9.zip
Ninja-94f999b681ea4ced1cc27b29e0db77d72554ecf9.tar.gz
Ninja-94f999b681ea4ced1cc27b29e0db77d72554ecf9.tar.bz2
Make gtest output more silent, ninja issue #528.
This is just a proof-of-concept. The terminal printing logic should be extracted from src/build.cc and then reused here.
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.py b/configure.py
index 10c6994..3ea91f0 100755
--- a/configure.py
+++ b/configure.py
@@ -331,9 +331,6 @@ if options.with_gtest:
objs += n.build(built('gtest-all' + objext), 'cxx',
os.path.join(path, 'src', 'gtest-all.cc'),
variables=[('cflags', gtest_cflags)])
- objs += n.build(built('gtest_main' + objext), 'cxx',
- os.path.join(path, 'src', 'gtest_main.cc'),
- variables=[('cflags', gtest_cflags)])
test_cflags.append('-I%s' % os.path.join(path, 'include'))
else:
@@ -353,6 +350,7 @@ for name in ['build_log_test',
'graph_test',
'lexer_test',
'manifest_parser_test',
+ 'ninja_test',
'state_test',
'subprocess_test',
'test',