Sha256: ffd858edc95d31ce98aba16a9331dae300f1dc86817502afae12131168c589bb
Contents?: true
Size: 471 Bytes
Versions: 16
Compression:
Stored size: 471 Bytes
Contents
#!/usr/bin/env python # Copyright (c) 2011 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 with C++ defines. """ import TestGyp test = TestGyp.TestGyp() test.run_gyp('defines.gyp') test.build('defines.gyp') expect = """\ FOO is defined VALUE is 1 2*PAREN_VALUE is 12 """ test.run_built_executable('defines', stdout=expect) test.pass_test()
Version data entries
16 entries across 16 versions & 3 rubygems