Sha256: 9652e53f0cdd12669529ba031a5c25dde84baea27f50599c3c422f8c78f3f444
Contents?: true
Size: 592 Bytes
Versions: 1
Compression:
Stored size: 592 Bytes
Contents
#!/usr/bin/env python # Copyright (c) 2014 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 it's possible for gyp actions to use the result of calling a make function with "$()". """ import TestGyp test = TestGyp.TestGyp(formats=['android']) test.run_gyp('make_functions.gyp') test.build('make_functions.gyp', test.ALL) file_content = 'A boring test file\n' test.built_file_must_match('file.in', file_content) test.built_file_must_match('file.out', file_content) 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/android/gyptest-make-functions.py |