Home | History | Annotate | Download | only in dependency-copy
      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 """
      8 Verifies dependencies do the copy step.
      9 """
     10 
     11 import TestGyp
     12 
     13 test = TestGyp.TestGyp()
     14 
     15 test.run_gyp('copies.gyp', chdir='src')
     16 
     17 test.build('copies.gyp', 'proj2', chdir='src')
     18 
     19 test.run_built_executable('proj1',
     20                           chdir='src',
     21                           stdout="Hello from file1.c\n")
     22 test.run_built_executable('proj2',
     23                           chdir='src',
     24                           stdout="Hello from file2.c\n")
     25 
     26 test.pass_test()
     27