diff options
author | William Deegan <bill@baddogconsulting.com> | 2022-05-04 22:51:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-04 22:51:39 (GMT) |
commit | d186a924c6fe9b500aebc3d0dfd0fc983856f8cc (patch) | |
tree | aa2b8ea2de7ec4375701cd54ac21716a6800efb6 /test/ninja | |
parent | acd04eeceb5e2d43eb0c9a6ccb3afd79e62f82be (diff) | |
parent | 9bf5451e5b579e1b5a369898fb519b0018985b06 (diff) | |
download | SCons-d186a924c6fe9b500aebc3d0dfd0fc983856f8cc.zip SCons-d186a924c6fe9b500aebc3d0dfd0fc983856f8cc.tar.gz SCons-d186a924c6fe9b500aebc3d0dfd0fc983856f8cc.tar.bz2 |
Merge branch 'master' into master
Diffstat (limited to 'test/ninja')
-rw-r--r-- | test/ninja/mingw_depfile_format.py | 60 | ||||
-rw-r--r-- | test/ninja/ninja_test_sconscripts/sconstruct_mingw_depfile_format | 7 |
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' + |