summaryrefslogtreecommitdiff
path: root/other-licenses/gyp-deps/tools/gyp/test/win/gyptest-link-outputfile.py
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-11-28 15:46:00 +0000
committerMoonchild <moonchild@palemoon.org>2021-11-28 15:46:00 +0000
commit998eac28fbe25eafe0eea8b5a0e2ca25c9f1f12e (patch)
treeab67e2d2bdfa5249c256fc98f12643d9a15f7c8c /other-licenses/gyp-deps/tools/gyp/test/win/gyptest-link-outputfile.py
parentb9df947881e005c333367fe47de8762e648e4e96 (diff)
downloadaura-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/win/gyptest-link-outputfile.py')
-rw-r--r--other-licenses/gyp-deps/tools/gyp/test/win/gyptest-link-outputfile.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/other-licenses/gyp-deps/tools/gyp/test/win/gyptest-link-outputfile.py b/other-licenses/gyp-deps/tools/gyp/test/win/gyptest-link-outputfile.py
new file mode 100644
index 000000000..b98cdff0f
--- /dev/null
+++ b/other-licenses/gyp-deps/tools/gyp/test/win/gyptest-link-outputfile.py
@@ -0,0 +1,28 @@
+#!/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.
+
+"""
+Make sure linker OutputFile setting is extracted properly.
+"""
+
+import TestGyp
+
+import sys
+
+if sys.platform == 'win32':
+ test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
+
+ CHDIR = 'linker-flags'
+ test.run_gyp('outputfile.gyp', chdir=CHDIR)
+ test.build('outputfile.gyp', test.ALL, chdir=CHDIR)
+
+ test.built_file_must_exist('blorp.exe', chdir=CHDIR)
+ test.built_file_must_exist('blorp.dll', chdir=CHDIR)
+ test.built_file_must_exist('subdir/blorp.exe', chdir=CHDIR)
+ test.built_file_must_exist('blorp.lib', chdir=CHDIR)
+ test.built_file_must_exist('subdir/blorp.lib', chdir=CHDIR)
+
+ test.pass_test()