Sha256: 82a68c6f4157f504bee244b9900dec8cc8d80104208df508705891d328afb5c9
Contents?: true
Size: 524 Bytes
Versions: 1
Compression:
Stored size: 524 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 depfile fields are output in ninja rules.""" import TestGyp test = TestGyp.TestGyp() if test.format == 'ninja': test.run_gyp('depfile.gyp') contents = open(test.built_file_path('obj/depfile_target.ninja')).read() expected = 'depfile = depfile.d' if expected not in contents: test.fail_test() 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/actions-depfile/gyptest-all.py |