Disable test/mac/gyptest-objc-gc.py when using Xcode 5.1

Xcode 5.1 removed support for garbage collection, and no longer recognize
the GCC_ENABLE_OBJC_GC settings, so disable the corresponding test.

BUG=gyp:414
R=mark@chromium.org

Review URL: https://codereview.chromium.org/196973002

git-svn-id: http://gyp.googlecode.com/svn/trunk@1868 78cadc50-ecff-11dd-a971-7dbc132099af
diff --git a/test/mac/gyptest-objc-gc.py b/test/mac/gyptest-objc-gc.py
index 70ec757..0cec458 100644
--- a/test/mac/gyptest-objc-gc.py
+++ b/test/mac/gyptest-objc-gc.py
@@ -9,6 +9,7 @@
 """
 
 import TestGyp
+import TestMac
 
 import sys
 
@@ -17,29 +18,34 @@
   test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'],
                          match = lambda a, b: True)
 
-  CHDIR = 'objc-gc'
-  test.run_gyp('test.gyp', chdir=CHDIR)
+  # Xcode 5.1 removed support for garbage-collection:
+  #   error: garbage collection is no longer supported
+  if TestMac.Xcode.Version() < '0510':
 
-  build_error_code = {
-    'xcode': [1, 65],  # 1 for xcode 3, 65 for xcode 4 (see `man sysexits`)
-    'make': 2,
-    'ninja': 1,
-  }[test.format]
+    CHDIR = 'objc-gc'
+    test.run_gyp('test.gyp', chdir=CHDIR)
 
-  test.build('test.gyp', 'gc_exe_fails', chdir=CHDIR, status=build_error_code)
-  test.build(
-      'test.gyp', 'gc_off_exe_req_lib', chdir=CHDIR, status=build_error_code)
+    build_error_code = {
+      'xcode': [1, 65],  # 1 for xcode 3, 65 for xcode 4 (see `man sysexits`)
+      'make': 2,
+      'ninja': 1,
+    }[test.format]
 
-  test.build('test.gyp', 'gc_req_exe', chdir=CHDIR)
-  test.run_built_executable('gc_req_exe', chdir=CHDIR, stdout="gc on: 1\n")
+    test.build('test.gyp', 'gc_exe_fails', chdir=CHDIR, status=build_error_code)
+    test.build(
+        'test.gyp', 'gc_off_exe_req_lib', chdir=CHDIR, status=build_error_code)
 
-  test.build('test.gyp', 'gc_exe_req_lib', chdir=CHDIR)
-  test.run_built_executable('gc_exe_req_lib', chdir=CHDIR, stdout="gc on: 1\n")
+    test.build('test.gyp', 'gc_req_exe', chdir=CHDIR)
+    test.run_built_executable('gc_req_exe', chdir=CHDIR, stdout="gc on: 1\n")
 
-  test.build('test.gyp', 'gc_exe', chdir=CHDIR)
-  test.run_built_executable('gc_exe', chdir=CHDIR, stdout="gc on: 1\n")
+    test.build('test.gyp', 'gc_exe_req_lib', chdir=CHDIR)
+    test.run_built_executable(
+        'gc_exe_req_lib', chdir=CHDIR, stdout="gc on: 1\n")
 
-  test.build('test.gyp', 'gc_off_exe', chdir=CHDIR)
-  test.run_built_executable('gc_off_exe', chdir=CHDIR, stdout="gc on: 0\n")
+    test.build('test.gyp', 'gc_exe', chdir=CHDIR)
+    test.run_built_executable('gc_exe', chdir=CHDIR, stdout="gc on: 1\n")
+
+    test.build('test.gyp', 'gc_off_exe', chdir=CHDIR)
+    test.run_built_executable('gc_off_exe', chdir=CHDIR, stdout="gc on: 0\n")
 
   test.pass_test()