Sha256: 3c991a51ee2ce3fcff1458ff00b1faf0678aa126bf1a5ebed6be78fe3a18f469

Contents?: true

Size: 812 Bytes

Versions: 16

Compression:

Stored size: 812 Bytes

Contents

#!/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.

"""
Verifies build of an executable in three different configurations.
"""

import TestGyp

test = TestGyp.TestGyp(formats=['msvs'])

test.run_gyp('configurations.gyp')

for platform in ['Win32', 'x64']:
  test.set_configuration('Debug|%s' % platform)
  test.build('configurations.gyp', rebuild=True)
  try:
    test.run_built_executable('configurations',
                              stdout=('Running %s\n' % platform))
  except WindowsError, e:
    # Assume the exe is 64-bit if it can't load on 32-bit systems.
    if platform == 'x64' and (e.errno == 193 or '[Error 193]' in str(e)):
      continue
    raise

test.pass_test()

Version data entries

16 entries across 16 versions & 3 rubygems

Version Path
libv8-3.11.8.17 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.16 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.13 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.12 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/libv8-3.11.8.4/vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.11 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.10 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.9 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.8 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.7 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.4 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-freebsd-3.11.8.3 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.3 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.1 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.11.8.0 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py
libv8-3.10.8.0 vendor/v8/build/gyp/test/configurations/x64/gyptest-x86.py