1#!/usr/bin/env python
2
3# Copyright (c) 2009 Google Inc. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7"""
8Verifies dependencies do the copy step.
9"""
10
11import TestGyp
12
13test = TestGyp.TestGyp()
14
15test.run_gyp('copies.gyp', chdir='src')
16
17test.build('copies.gyp', 'proj2', chdir='src')
18
19test.run_built_executable('proj1',
20                          chdir='src',
21                          stdout="Hello from file1.c\n")
22test.run_built_executable('proj2',
23                          chdir='src',
24                          stdout="Hello from file2.c\n")
25
26test.pass_test()
27