mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
45 lines
1.6 KiB
12 years ago
|
#!/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 we generate a manifest file when linking binaries, including
|
||
|
handling AdditionalManifestFiles.
|
||
|
"""
|
||
|
|
||
|
import TestGyp
|
||
|
|
||
|
import sys
|
||
|
|
||
|
if sys.platform == 'win32':
|
||
|
test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
|
||
|
|
||
|
CHDIR = 'linker-flags'
|
||
|
test.run_gyp('generate-manifest.gyp', chdir=CHDIR)
|
||
|
test.build('generate-manifest.gyp', test.ALL, chdir=CHDIR)
|
||
|
test.built_file_must_exist('test_manifest_exe.exe.manifest', chdir=CHDIR)
|
||
|
test.built_file_must_exist('test_manifest_dll.dll.manifest', chdir=CHDIR)
|
||
|
|
||
|
# Must contain the Win7 support GUID, but not the Vista one (from
|
||
|
# extra2.manifest).
|
||
|
extra1_manifest = test.built_file_path(
|
||
|
'test_manifest_extra1.exe.manifest', chdir=CHDIR)
|
||
|
test.must_contain(extra1_manifest, '35138b9a-5d96-4fbd-8e2d-a2440225f93a')
|
||
|
test.must_not_contain(extra1_manifest, 'e2011457-1546-43c5-a5fe-008deee3d3f0')
|
||
|
|
||
|
# Must contain both.
|
||
|
extra2_manifest = test.built_file_path(
|
||
|
'test_manifest_extra2.exe.manifest', chdir=CHDIR)
|
||
|
test.must_contain(extra2_manifest, '35138b9a-5d96-4fbd-8e2d-a2440225f93a')
|
||
|
test.must_contain(extra2_manifest, 'e2011457-1546-43c5-a5fe-008deee3d3f0')
|
||
|
|
||
|
# Same as extra2, but using list syntax instead.
|
||
|
extra_list_manifest = test.built_file_path(
|
||
|
'test_manifest_extra_list.exe.manifest', chdir=CHDIR)
|
||
|
test.must_contain(extra_list_manifest, '35138b9a-5d96-4fbd-8e2d-a2440225f93a')
|
||
|
test.must_contain(extra_list_manifest, 'e2011457-1546-43c5-a5fe-008deee3d3f0')
|
||
|
|
||
|
test.pass_test()
|