Index: test/mac/gyptest-clang-cxx-library.py |
diff --git a/test/mac/gyptest-clang-cxx-library.py b/test/mac/gyptest-clang-cxx-library.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..728cd1c898bf765a598a7aa5a724de8a2ec0d02d |
--- /dev/null |
+++ b/test/mac/gyptest-clang-cxx-library.py |
@@ -0,0 +1,23 @@ |
+#!/usr/bin/env python |
+ |
+# Copyright (c) 2013 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 CLANG_CXX_LIBRARY works. |
+""" |
+ |
+import TestGyp |
+ |
+import sys |
+ |
+if sys.platform == 'darwin': |
+ test = TestGyp.TestGyp(formats=['make', 'ninja', 'xcode']) |
+ |
+ test.run_gyp('clang-cxx-library.gyp', chdir='clang-cxx-library') |
Nico
2013/03/18 15:32:31
This test needs something like
if not os.path.i
|
+ |
+ test.build('clang-cxx-library.gyp', test.ALL, chdir='clang-cxx-library') |
+ |
+ test.pass_test() |
+ |