Sha256: 634896be907641c0f53028f7a1e7779817c3649e0be5461f07841e1388194b7a
Contents?: true
Size: 566 Bytes
Versions: 39
Compression:
Stored size: 566 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 that toolsets are correctly applied """ import TestGyp # Multiple toolsets are currently only supported by the make generator. test = TestGyp.TestGyp(formats=['make']) test.run_gyp('toolsets.gyp') test.build('toolsets.gyp', test.ALL) test.run_built_executable('host-main', stdout="Host\n") test.run_built_executable('target-main', stdout="Target\n") test.pass_test()
Version data entries
39 entries across 39 versions & 5 rubygems