Sha256: e9b8454b4bf05fded2fd03db726abb82432c33cf23195f869be5013632782f1f
Contents?: true
Size: 841 Bytes
Versions: 24
Compression:
Stored size: 841 Bytes
Contents
#!/usr/bin/env python # Copyright (c) 2012 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. """ Make sure lots of actions in the same target don't cause exceeding command line length. """ import TestGyp test = TestGyp.TestGyp() test.run_gyp('many-actions-unsorted.gyp') test.build('many-actions-unsorted.gyp', test.ALL) for i in range(15): test.built_file_must_exist('generated_%d.h' % i) # Make sure the optimized cygwin setup doesn't cause problems for incremental # builds. test.touch('file1') test.build('many-actions-unsorted.gyp', test.ALL) test.touch('file0') test.build('many-actions-unsorted.gyp', test.ALL) test.touch('file2') test.touch('file3') test.touch('file4') test.build('many-actions-unsorted.gyp', test.ALL) test.pass_test()
Version data entries
24 entries across 24 versions & 4 rubygems