summaryrefslogtreecommitdiff
path: root/deps/gyp/test/ios/gyptest-extension.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/ios/gyptest-extension.py')
-rwxr-xr-xdeps/gyp/test/ios/gyptest-extension.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/deps/gyp/test/ios/gyptest-extension.py b/deps/gyp/test/ios/gyptest-extension.py
new file mode 100755
index 0000000000..81c019c05e
--- /dev/null
+++ b/deps/gyp/test/ios/gyptest-extension.py
@@ -0,0 +1,31 @@
+#!/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 ios app extensions are built correctly.
+"""
+
+import TestGyp
+import TestMac
+
+import sys
+if sys.platform == 'darwin' and TestMac.Xcode.Version()>="0600":
+ print "This test is currently disabled: https://crbug.com/483696."
+ sys.exit(0)
+
+ test = TestGyp.TestGyp(formats=['ninja', 'xcode'])
+
+ test.run_gyp('extension.gyp', chdir='extension')
+
+ test.build('extension.gyp', 'ExtensionContainer', chdir='extension')
+
+ # Test that the extension is .appex
+ test.built_file_must_exist(
+ 'ExtensionContainer.app/PlugIns/ActionExtension.appex',
+ chdir='extension')
+
+ test.pass_test()
+