Sha256: 8e6821ada0ad19e4717d605d5bf17c8abe90013d2da3115f519b2b8c4d8ae66e

Contents?: true

Size: 1.05 KB

Versions: 23

Compression:

Stored size: 1.05 KB

Contents

#!/usr/bin/env python

# Copyright (c) 2012 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('build/all.gyp', chdir='src')

test.build('build/all.gyp', test.ALL, chdir='src')

chdir = 'src/build'

# The top-level Makefile is in the directory where gyp was run.
# TODO(mmoss) Should the Makefile go in the directory of the passed in .gyp
# file? What about when passing in multiple .gyp files? Would sub-project
# Makefiles (see http://codereview.chromium.org/340008 comments) solve this?
if test.format in ('make', 'ninja'):
  chdir = 'src'

if test.format == 'xcode':
  chdir = 'src/prog1'
test.run_built_executable('program1',
                          chdir=chdir,
                          stdout="Hello from prog1.c\n")

if test.format == 'xcode':
  chdir = 'src/prog2'
test.run_built_executable('program2',
                          chdir=chdir,
                          stdout="Hello from prog2.c\n")

test.pass_test()

Version data entries

23 entries across 23 versions & 3 rubygems

Version Path
libv8-3.16.14.19.1 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.19 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.18 vendor/gyp/test/sibling/gyptest-all.py
arcabouco-0.2.13 vendor/bundle/gems/libv8-3.16.14.17/vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.17 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.16 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.15 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.14 vendor/gyp/test/sibling/gyptest-all.py
libv8-tmpfork-3.16.14.13 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.13 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.12 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.11 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.10 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.8 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.8.rc1 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.7 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.6 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.5 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.4 vendor/gyp/test/sibling/gyptest-all.py
libv8-3.16.14.3 vendor/gyp/test/sibling/gyptest-all.py