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.
36 lines
1.2 KiB
36 lines
1.2 KiB
#!/usr/bin/env python
|
|
|
|
# Copyright (c) 2009 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.
|
|
|
|
"""
|
|
Verify that a hard_dependency that is not exported is not pulled in as a
|
|
dependency for a target if the target does not explicitly specify a dependency
|
|
and none of its dependencies export the hard_dependency.
|
|
"""
|
|
|
|
import TestGyp
|
|
|
|
test = TestGyp.TestGyp()
|
|
|
|
if test.format == 'dump_dependency_json':
|
|
test.skip_test('Skipping test; dependency JSON does not adjust ' \
|
|
'static libaries.\n')
|
|
|
|
test.run_gyp('hard_dependency.gyp', chdir='src')
|
|
|
|
chdir = 'relocate/src'
|
|
test.relocate('src', chdir)
|
|
|
|
test.build('hard_dependency.gyp', 'd', chdir=chdir)
|
|
|
|
# Because 'c' does not export a hard_dependency, only the target 'd' should
|
|
# be built. This is because the 'd' target does not need the generated headers
|
|
# in order to be compiled.
|
|
test.built_file_must_not_exist('a', type=test.STATIC_LIB, chdir=chdir)
|
|
test.built_file_must_not_exist('b', type=test.STATIC_LIB, chdir=chdir)
|
|
test.built_file_must_not_exist('c', type=test.STATIC_LIB, chdir=chdir)
|
|
test.built_file_must_exist('d', type=test.STATIC_LIB, chdir=chdir)
|
|
|
|
test.pass_test()
|
|
|