Index: test/ninja/chained-rules/gyptest-chained-rules.py |
diff --git a/test/ninja/chained-rules/gyptest-chained-rules.py b/test/ninja/chained-rules/gyptest-chained-rules.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6f70a0fbc063aeb07bf2f4259c3b3dd08f4993e9 |
--- /dev/null |
+++ b/test/ninja/chained-rules/gyptest-chained-rules.py |
@@ -0,0 +1,19 @@ |
+#!/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. |
+ |
+""" |
+Verifies that rules operating on the output of other rules are processed. |
+""" |
+ |
+import os |
+import sys |
+import TestGyp |
+ |
+test = TestGyp.TestGyp(formats=['ninja']) |
Nico
2012/05/16 23:08:55
Why a ninja-only test?
|
+test.run_gyp('chained-rules.gyp') |
+test.build('chained-rules.gyp', test.ALL) |
+test.built_file_must_exist('input.msi') |
+test.pass_test() |