Sha256: 9c0198e1e7e83898cc9f6cc3f27bf0b3c02bd3dae4a098104e463d11a4e0f7a0
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
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() if test.format == 'android': # This test currently fails on android. Investigate why, fix the issues # responsible, and reenable this test on android. See bug: # https://code.google.com/p/gyp/issues/detail?id=436 test.skip_test(message='Test fails on android. Fix and reenable.\n') test.run_gyp('configurations.gyp') test.set_configuration('Release') test.build('configurations.gyp') test.run_built_executable('configurations', stdout="Release configuration\n") test.set_configuration('Debug') test.build('configurations.gyp') test.run_built_executable('configurations', stdout="Debug configuration\n") test.set_configuration('Foo') test.build('configurations.gyp') test.run_built_executable('configurations', stdout="Foo configuration\n") test.pass_test()
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tree-sitter-0.1.0 | ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/basics/gyptest-configurations.py |