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.
35 lines
769 B
35 lines
769 B
#!/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.
|
|
|
|
"""
|
|
"""
|
|
|
|
import TestGyp
|
|
|
|
test = TestGyp.TestGyp()
|
|
|
|
test.run_gyp('multiple.gyp', chdir='src')
|
|
|
|
test.relocate('src', 'relocate/src')
|
|
|
|
# TODO(sgk): remove stderr=None when the --generator-output= support
|
|
# gets rid of the scons warning
|
|
test.build('multiple.gyp', test.ALL, chdir='relocate/src', stderr=None)
|
|
|
|
expect1 = """\
|
|
hello from prog1.c
|
|
hello from common.c
|
|
"""
|
|
|
|
expect2 = """\
|
|
hello from prog2.c
|
|
hello from common.c
|
|
"""
|
|
|
|
test.run_built_executable('prog1', stdout=expect1, chdir='relocate/src')
|
|
test.run_built_executable('prog2', stdout=expect2, chdir='relocate/src')
|
|
|
|
test.pass_test()
|
|
|