summaryrefslogtreecommitdiff
path: root/test/assembly/gyptest-assembly.py
blob: f117482c9d71da3f9fe65bbf63b10ee338623720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python

"""
Verifies that .hpp files are ignored when included in the source list on all
platforms.
"""

import sys
import TestGyp

# TODO(bradnelson): get this working for windows.
test = TestGyp.TestGyp(formats=['make', 'scons', 'xcode'])

test.run_gyp('assembly.gyp', chdir='src')

test.relocate('src', 'relocate/src')

test.build_all('assembly.gyp', chdir='relocate/src')

expect = """\
Hello from program.c
Got 42.
"""
test.run_built_executable('program', chdir='relocate/src', stdout=expect)


test.pass_test()