diff options
author | Moonchild <moonchild@palemoon.org> | 2021-11-28 15:46:00 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-11-28 15:46:00 +0000 |
commit | 998eac28fbe25eafe0eea8b5a0e2ca25c9f1f12e (patch) | |
tree | ab67e2d2bdfa5249c256fc98f12643d9a15f7c8c /other-licenses/gyp-deps/tools/gyp/test/mac/gyptest-postbuild-multiple-configurations.py | |
parent | b9df947881e005c333367fe47de8762e648e4e96 (diff) | |
download | aura-central-998eac28fbe25eafe0eea8b5a0e2ca25c9f1f12e.tar.gz |
Issue %3014 - Part 7: Move gyp and build deps to other-licenses.
Diffstat (limited to 'other-licenses/gyp-deps/tools/gyp/test/mac/gyptest-postbuild-multiple-configurations.py')
-rw-r--r-- | other-licenses/gyp-deps/tools/gyp/test/mac/gyptest-postbuild-multiple-configurations.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/other-licenses/gyp-deps/tools/gyp/test/mac/gyptest-postbuild-multiple-configurations.py b/other-licenses/gyp-deps/tools/gyp/test/mac/gyptest-postbuild-multiple-configurations.py new file mode 100644 index 000000000..84694f36c --- /dev/null +++ b/other-licenses/gyp-deps/tools/gyp/test/mac/gyptest-postbuild-multiple-configurations.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +# Copyright (c) 2012 Google Inc. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +""" +Verifies that a postbuild work in projects with multiple configurations. +""" + +import TestGyp + +import sys + +if sys.platform == 'darwin': + test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) + + CHDIR = 'postbuild-multiple-configurations' + test.run_gyp('test.gyp', chdir=CHDIR) + + for configuration in ['Debug', 'Release']: + test.set_configuration(configuration) + test.build('test.gyp', test.ALL, chdir=CHDIR) + test.built_file_must_exist('postbuild-file', chdir=CHDIR) + + test.pass_test() |