summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJan Niklas Hasse <jhasse@bixense.com>2023-11-22 16:22:31 (GMT)
committerGitHub <noreply@github.com>2023-11-22 16:22:31 (GMT)
commit4b6a8ac3b1a05da1a2ed7e4a4a0216c5b770bc74 (patch)
tree3e226a986888a88d892a55e9433ba65d5ce5bb63 /configure.py
parent236e32038251cc845b54d30191638e7d0c20e77e (diff)
parent87c92f2cab7852f54bc697d53769ebb75e4a88be (diff)
downloadNinja-4b6a8ac3b1a05da1a2ed7e4a4a0216c5b770bc74.zip
Ninja-4b6a8ac3b1a05da1a2ed7e4a4a0216c5b770bc74.tar.gz
Ninja-4b6a8ac3b1a05da1a2ed7e4a4a0216c5b770bc74.tar.bz2
Merge pull request #1562 from jhasse/googletest
Use GoogleTest instead of our own framework
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py38
1 files changed, 0 insertions, 38 deletions
diff --git a/configure.py b/configure.py
index 939153d..6ee64a8 100755
--- a/configure.py
+++ b/configure.py
@@ -582,44 +582,6 @@ if options.bootstrap:
# build.ninja file.
n = ninja_writer
-n.comment('Tests all build into ninja_test executable.')
-
-objs = []
-if platform.is_msvc():
- cxxvariables = [('pdb', 'ninja_test.pdb')]
-
-for name in ['build_log_test',
- 'build_test',
- 'clean_test',
- 'clparser_test',
- 'depfile_parser_test',
- 'deps_log_test',
- 'dyndep_parser_test',
- 'disk_interface_test',
- 'edit_distance_test',
- 'graph_test',
- 'json_test',
- 'lexer_test',
- 'manifest_parser_test',
- 'missing_deps_test',
- 'ninja_test',
- 'state_test',
- 'status_test',
- 'string_piece_util_test',
- 'subprocess_test',
- 'test',
- 'util_test']:
- objs += cxx(name, variables=cxxvariables)
-if platform.is_windows():
- for name in ['includes_normalize_test', 'msvc_helper_test']:
- objs += cxx(name, variables=cxxvariables)
-
-ninja_test = n.build(binary('ninja_test'), 'link', objs, implicit=ninja_lib,
- variables=[('libs', libs)])
-n.newline()
-all_targets += ninja_test
-
-
n.comment('Ancillary executables.')
if platform.is_aix() and '-maix64' not in ldflags: