OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 2 |
| 3 # Copyright (c) 2012 Google Inc. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
| 6 |
| 7 """ |
| 8 Verifies that we don't have chained rule invocations. |
| 9 """ |
| 10 |
| 11 import TestGyp |
| 12 |
| 13 # Rules that chain the output of a rule to another rule are challenging to |
| 14 # support in all generators, so we purposefully ensure we don't use that |
| 15 # behaviour. |
| 16 test = TestGyp.TestGyp() |
| 17 test.run_gyp('chained-rules.gyp', status=1, stderr=None) |
| 18 test.pass_test() |
OLD | NEW |