summaryrefslogtreecommitdiffstats
path: root/test/ninja
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2022-05-05 00:26:06 (GMT)
committerGitHub <noreply@github.com>2022-05-05 00:26:06 (GMT)
commitce33de34a52c382310f03148dd0a3cd3799cfc3a (patch)
treea909287fb1501874fe2945225f9bbada31278e0a /test/ninja
parentf090ad03f416dfa991947899b182de6964317b3e (diff)
parent5f370e6faf33176989022b80705bf6e9de232fa7 (diff)
downloadSCons-ce33de34a52c382310f03148dd0a3cd3799cfc3a.zip
SCons-ce33de34a52c382310f03148dd0a3cd3799cfc3a.tar.gz
SCons-ce33de34a52c382310f03148dd0a3cd3799cfc3a.tar.bz2
Merge branch 'master' into ninja_alias_generated_files
Diffstat (limited to 'test/ninja')
-rw-r--r--test/ninja/mingw_depfile_format.py60
-rw-r--r--test/ninja/ninja_test_sconscripts/sconstruct_mingw_depfile_format7
2 files changed, 67 insertions, 0 deletions
diff --git a/test/ninja/mingw_depfile_format.py b/test/ninja/mingw_depfile_format.py
new file mode 100644
index 0000000..5de7b5f
--- /dev/null
+++ b/test/ninja/mingw_depfile_format.py
@@ -0,0 +1,60 @@
+#!/usr/bin/env python
+#
+# Copyright The SCons Foundation
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#
+
+import os
+
+import TestSCons
+
+test = TestSCons.TestSCons()
+
+try:
+ import ninja
+except ImportError:
+ test.skip_test("Could not find module in python")
+
+_python_ = TestSCons._python_
+_exe = TestSCons._exe
+
+ninja_bin = os.path.abspath(os.path.join(
+ ninja.BIN_DIR,
+ 'ninja' + _exe))
+
+test.dir_fixture('ninja-fixture')
+
+test.file_fixture('ninja_test_sconscripts/sconstruct_mingw_depfile_format', 'SConstruct')
+
+# generate simple build
+test.run(stdout=None)
+test.must_contain_all_lines(test.stdout(), ['Generating: build.ninja'])
+test.must_contain_all(test.stdout(), 'Executing:')
+test.must_contain_all(test.stdout(), 'ninja%(_exe)s -f' % locals())
+test.must_contain(test.workpath('build.ninja'), 'deps = msvc')
+
+test.pass_test()
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4:
diff --git a/test/ninja/ninja_test_sconscripts/sconstruct_mingw_depfile_format b/test/ninja/ninja_test_sconscripts/sconstruct_mingw_depfile_format
new file mode 100644
index 0000000..b765db5
--- /dev/null
+++ b/test/ninja/ninja_test_sconscripts/sconstruct_mingw_depfile_format
@@ -0,0 +1,7 @@
+SetOption('experimental','ninja')
+DefaultEnvironment(tools=[])
+
+env = Environment(tools=['mingw'])
+env.Tool('ninja')
+env['NINJA_DEPFILE_PARSE_FORMAT'] = 'msvc'
+