aboutsummaryrefslogtreecommitdiff
path: root/Foundation
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-10-23 17:04:00 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2009-10-23 17:04:00 +0000
commitd6c043a707ad990f7e62e5f1934f5a9b4c0d9ea7 (patch)
tree387240aa8c21bf404818e34a4c07d8a16771304b /Foundation
parent47d6568fec47fd0026aec559130ab9492fe57be3 (diff)
[Author: thomasvl]
Mark a test as still not always passing due to system bugs under garbage collection. R=dmaclach DELTA=2 (0 added, 0 deleted, 2 changed)
Diffstat (limited to 'Foundation')
-rw-r--r--Foundation/GTMNSAppleScript+HandlerTest.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Foundation/GTMNSAppleScript+HandlerTest.m b/Foundation/GTMNSAppleScript+HandlerTest.m
index fdf3a57..dc310dc 100644
--- a/Foundation/GTMNSAppleScript+HandlerTest.m
+++ b/Foundation/GTMNSAppleScript+HandlerTest.m
@@ -36,11 +36,11 @@
// GTMNSAppleScript+Handler.h for more details, but we disable them to avoid
// the tests failing (crashing) when it's Apple's bug. Please bump the system
// check as appropriate when new systems are tested. Currently broken on
- // 10.5.7 and below. Radar 6126682.
+ // 10.5.8 and below. Radar 6126682.
SInt32 major, minor, bugfix;
[GTMSystemVersion getMajor:&major minor:&minor bugFix:&bugfix];
if (!(GTMIsGarbageCollectionEnabled()
- && major <= 10 && minor <= 5 && bugfix <= 7)) {
+ && major <= 10 && minor <= 5 && bugfix <= 8)) {
[super invokeTest];
} else {
NSLog(@"--- %@ NOT run because of GC incompatibilites ---", [self name]);