MASON MARK (.COM)

The Xcode Fairy

2011-12-05

This post describes a bug in Xcode 4.2.1 and a simple way to work around it. If you find it useful, please send me $5,000.00.

Xcode 4.2.1 has a bug (actually a set of related bugs) that can break the automated testing functionality for a project in certain conditions, such that the following things happen:

0.) Xcode gets confused, and uses the wrong executable for the project's Test action. This prevents the automated tests from being executed. This is the actual core of the bug.

1.) Compounding things somewhat, when this bug manifests, Xcode will tell the programmers that all their tests passed, when in fact Xcode didn't actually run any of their tests. That's bad, because it can easily go unnoticed for a while. The programmers may waste significant time writing code, thinking all tests are passing, only to then have to backtrack and rewrite when they realize that their new code is actually all wrong (something the failure of their existing tests would have alerted them to, had the tests actually been run).

Xcode is lying

2.) But those things are nothing compared to the insidious violence that this bug visits upon the programmers who try to figure out the cause and make it stop happening. This software defect can snare its victims in a web of deception that can take hours to unravel, and can result in the brutal and premature demise of any keyboards, mice, and even monitors that happen to be nearby.

A professional programmer has to have automated tests. Programmers argue about what kinds of tests to write, and when to write them, but not having tests at all is pure fuckery. Writing serious code without tests is for dilettantes and winos. Programmers need tests, which are typically run automatically by the programming toolchain when the code is built or run.

Mac programmers (and those iOS programmer weenies, too, as far as I've heard) pretty much have to use Xcode. There are insane convolutions that one might go through to avoid Xcode -- and indeed, most Mac programmers fantasize about this from time to time -- but generally speaking, Xcode is really the only game in town.

Mac programmers need Xcode and they need tests, so naturally they want Xcode to run their tests.

Therefore, when the programmers eventually notice that Xcode isn't running their tests, they will likely stop whatever else they are doing and try to fix it, by fiddling with the project settings. Most programmers would start by editing or recreating the project's Xcode schemes, which is logical, because the Xcode scheme controls, among other things, how and when to run the tests. They'll make a change or perhaps give up and rebuild the scheme from scratch (a minor pain in the ass), or maybe quit Xcode and revert the project file to the last checked out version. Most likely, they will see that after their changes, Xcode again properly runs their tests. The programmers will resume their work, and life will once again be fine, or at least okay.

But Xcode isn't through with those poor assholes. No, it has only just begun to fuck with them.

A bit later -- minutes, hours, days in some cases -- the bug will hit them again. With a little bad luck, their git commit log might end up looking something like this:

[broham@IT-PC-MACPRO-01 my-rad-tool (master)]$ git log --pretty=format:"%h%x09%x09%ad%x09%s" 6ce5b76 Mon Dec 5 15:27 SOLVE, really this time, the Xcode random project corruption problem. 114b116 Sun Dec 4 21:50 FUCK XCODE FUCK XCODE FUCK XCODE FUCK XCODE FUCK XCODE FUCK XCODE FUCK XCODE FUCK 0d87a5f Sun Dec 4 21:46 die xcode die 1010c1e Sun Dec 4 21:24 What the fuck is the deal with Xcode 08e67fb Sun Dec 4 20:57 Document the way I finally seem to have worked around the Xcode unfixable project 6b5dfb4 Sun Dec 4 20:49 Xcode 4 is just garbage. a878a75 Sun Dec 4 20:31 Rename the Xcode scheme and document the two things you can do that will cause Xco 9b19a92 Sun Dec 4 20:17 Rename project 'objj-indexer project.xcodeproj'. It seems Xcode doesn't shit on it 3c0fa9c Sun Dec 4 20:13 Get fucked in ass by Xcode again. Renamed project file to 'project.xcodeproj'. 71d2d13 Sun Dec 4 18:32 Attempt to convince Xcode to please stop corrupting the project. 7296a96 Sun Dec 4 17:33 Resolve the Xcode issue by giving up having the command line tool be the executabl 608bc70 Sun Dec 4 17:24 Fuck Xcode to hell. I think it is working now, though. 2bdc22b Sun Dec 4 17:09 Fuck with Xcode for 4 hours to try to get it to stop corrupting this project such 39f396e Sun Dec 4 14:08 Waste several hours fixing Xcode self-corruption and rebuilding project from scrat

That's a whole Sunday there. Looks like they (*cough* I) didn't get any actual work done all day. That's because this bug is a motherfucking son of a bitch. It comes and goes on a whim, at random, which makes it hard initially to figure out what is going on. A programmer might try something, test it, see that the problem is gone, and think they fixed it. But really what they did had nothing to do with anything. And then the bug comes back. Over and over and over.

"Which of you jackasses merged the beer-goggles topic branch without running the test suites?" one programmer might call out. "Five tests fail. FAIL!"

"No way dude, I ran the tests before I pushed the code. Maybe something... ah, shit, it's not fucking running the tests again. It just says 'Test Succeeded' and 'No issues'. Again! Xcode is a lying ass bitch!"'

Maybe at this point a mouse or empty soda can gets thrown against the wall.

"Okay man, look, tests are working on my machine, let's diff the project files and see if we can find something that might be why its not working on your machine but is on mine."

"Man, this file is just a list of thousands of UUIDs, we're not gonna make sense of this... let me just get a copy of your project file and replace mine. I'll quit Xcode and move it into place... Okay, that worked. Fuck though, why does the project keep getting corrupted? I don't see anything that looks like a clue when I diff the good one and the bad one either."

"Well, at least it's working now."

By that time, though, it might be 4:00 PM, and with energy waning, they might just commit what they've done so far with a message like "Work around Xcode bugs" and leave early to go get drunk.

The next day, though, the situation might well begin to rapidly deteriorate.

"Motherfucker!" one of them might scream. "Did you fuck with the scheme definition in your last commit? Now I have to delete it and re-create it again."

"No, bitch," the other might retort indignantly. "I didn't change jack shit, except for turning off parallel builds. And it is still working fine for me. If you broke the build again, you fix it. Revert your Xcode project file again, it was working fine an hour ago."

"I already did that, genius! There aren't any changes to the project file. Check out the diff right here on the screen, asshole."

At this point, the programmers would probably decide that something is just irredeemably fucked with their on-disk project file itself. It wouldn't be surprising; the project file in question was originally created with the older Xcode 4.0, a notably buggy and half-baked release, and has also been subjected to dozens of instances where Xcode crashed while various operations were in progress. Maybe something got borked.

Concerned about their slipping productivity and the growing amount of time lost to fucking with their IDE settings, they embark on the unenviable task of recreating the project from scratch. Create the project bundle, add each target, set each target's build settings, set the Bundle Loader and the Test Host, the Info.plist path, and other such drudgery.

Finished, they quit Xcode and painstakingly move all the little niggly .xcscheme and .pbxproject files into the correct places within the .xcproj bundle.

"All tests pass, fuck yeah, commit that shit."

And so, back to work.

With a gray and gloomy tone having already been set for the week, what with all this hapless rejiggering of settings and a marked lack of in-the-zone progress, the shit will likely hit the fan and splatter all over everything in the room the next morning, when one of the programmers git-pulls and sets to work.

"What the fucking motherfuck who fucking added another build target to the motherfucking scheme and broke the motherfucking goddamn tests again! Jesus motherfucking Christ!"

"The fuck are you on about? I don't know what you're doing, but you're fucking Doing It Wrong, dude. It works fine on my machine."

"Motherfucker, stop lying! You added another fucking target to the scheme! Look, it's right fucking here in the Build panel! LOOK!"

"Hey man, fuck you--"

"NO FUCK YUO!!!"

Now, the reason that these hypothetical hackers are on the verge of breaking into fisticuffs is that this bug hides itself like fucking octopus in a coral reef. It's really not their fault; it's a hard bug to track down.

Since they live in imagination-land, though, we can just help them out.

Programmer: "Ohmyfuckinghgod, dude, look out for that huge fucking bug above your head!"

Programmer: "If you hit me in the head with that rolled up newspaper I'm gonna kick you in the balls, jackass."

Programmer: "I'm serious, dude!"

Magic Fairy: "I'm not a bug. I'm a magical fairy from the Kingdom of Menlo. I'm here to help you out with your Xcode problem."

Programmer: "Oh shit, you weren't lying. What the fuck is that!"

Programmer: "Look, sweetheart, thanks for the offer and everything, but we're professionals here. I don't believe in fairies, and even though I now see that I am obviously wrong about that, I still don't think there's a whole lot that a flying miniature hottie with butterfly wings and a wand can tell us about--"

Magic Fairy: "Change the name of your Xcode project."

Programmer: "Look, we already did that, and more. It had no effect. We rebuilt the project, we renamed the project, the targets, the schemes, etc. and it had no--"

Magic Fairy: "Change the name of your Xcode project file."

Programmer: "I told you, we--"

Programmer: "Dude, this shit's been biting us in the ass for days on end. If a fucking magical fairy from another dimension appears and tells us to rename our Xcode project file, we might as well fucking try it. Here, I'll do it. What should I rename the project to?"

Magic Fairy: "I'm not from another dimension."

Programmer: "Okay. Rename the project. Here, I'll append 'v2' to the name."

Magic Fairy: "No. Change it to my name."

Programmer: "She's totally fucking with you, dude. Come on, now."

Programmer: "Fine! Whatever. What's your name?"

Magic Fairy: "My name is Slut."

Programmer: "Sloot?"

Magic Fairy: "Yeah, Slut. S-l-u-t."

Programmer: "Wow, that's not how we'd tend to pronounce it. But I mean that's cool, totally cool, and stuff. How did you uh, come by that name?"

Magic Fairy: "My name used to be Alianna, but as soon as I entered this programming-related blog post, my name was transformed. An evil golem named Choad'wan cast a spell on the whole IT industry to make sure it remains a totally sexist bro-fest for all eternity."

Programmer: "Yeah, I've been reading a lot about that lately."

Programmer: "But dude, she is actually pretty hot though! I mean kinda too small to uh, I mean, anyway you should really put on your glasses, dude."

Programmer: "Seems like Choad'wan's spell is working fine. Can we get back to the Xcode thing."

Magic Fairy: "You say it like you're the one waiting for me."

Programmer: "Okay, should I rename the file in the Finder, or do it in Xcode?"

Magic Fairy: "In Xcode."

Programmer: "Okay, s-l-u-t it is. But you know, we did this before."

Magic Fairy: "You named your program after me before?"

Programmer: "No, but we renamed it at some point."

Magic Fairy: "Why?"

Programmer: "Well, at some point when the project file got corrupted again, I uh, renamed the project FUCKXCODE.xcodeproj because I thought that Xcode was maybe internally referring to different types of entities by name, instead of uuid, and getting confused. Since the project was named after the the command-line tool it builds, they had the same name. So I changed it to 'FUCKXCODE' and things the tests started running again."

Magic Fairy: "Well, wasn't that a clue?"

Programmer: "I thought so, but no, because later I changed the name back and everything still worked. So it wasn't the project name. But just in case I appended ' project' to the name. But the problem came back. And then later, we renamed all the targets and that fixed it. For a while. Tweaking the target or the scheme seems to fix it for a while, but somehow the project is getting corrupted when Xcode writes it out to disk. But we can't figure out exactly how it's getting corrupted, or why."

Magic Fairy: "My spiritual guru used to say something from time to time that I think applies to your situation."

Programmer: "Who's your spiritual guru?"

Magic Fairy: "Microsoft Word 6.0.1 for Macintosh."

Programmer: "I get it, fuckface. You put LSD in my Dr. Pepper. Really fucking funny."

Programmer: "Wait, your spritual guru is Microsoft Word 6.0.1 for Macintosh?"

Magic Fairy: "She liked to remind me--"

Programmer: "Wait, Microsoft Word is a chick?"

Magic Fairy: "Sometimes things that go away by themselves--"

Programmer: "--can come back by themselves! Of course! Dammit! How could I be so stupid!"

Programmer: "The fuck are you guys talking about?"

Programmer: "I think she's saying all our debugging of this issue has been a total fucking waste of time."

Magic Fairy: "Right."

Sometimes things that go away by themselves can come back by themselves.

Programmer: "Okay, I renamed the project like you said. What's next."

Magic Fairy: "Add a single test that asserts 1 equals 0, so tests shouldn't pass. Then relaunch Xcode. Hit Command-U to run the Test action."

Programmer: "Tests fail."

Magic Fairy: "Quit Xcode. The do it again."

Programmer: "Tests fail again."

Magic Fairy: "Again."

Programmer: "Tests fail again. Okay, we get it, it works with your name."

Magic Fairy: "Again!"

Programmer: "Okay! Fuck! Tests fail again! Quit, relaunch, test, fail! Quit, relaunch, test, fail! Same thing again! Again! Again! Again! I've done it ten times now. It's working!"

Magic Fairy: "Now rename it back."

Programmer: "Okay. Renamed it back to the original babe-rater.xcodeproj."

Magic Fairy: "Wait, the name of your program is babe-rater?"

Programmer: "Uh..."

Magic Fairy: "You're writing a command line UNIX utility to rate babes?"

Programmer: "Never mind that! Look! Launch Xcode, test, the tests fail as they should. So what does that prove?"

Magic Fairy: "Again."

Programmer: "Fail."

Magic Fairy: "Again.

Programmer: "Fail!"

Magic Fairy: "Again!"

Programmer: "Tests... the tests pass. Shit. It didn't run any of the tests. But the project file hasn't changed at all. The project was never actually corrupt in the fist place!"

Programmer: "Motherfucking motherfucker! What the fuck!"

Programmer: "So the bug can go away by itself..."

Magic Fairy: "And come back by itself. Yeah."

Programmer: "And the project file doesn't change at all. So all our recreating he targets and build schemes, which seemed to fix it for a while, wasn't really doing anything."

Magic Fairy: "Yeah."

Programmer: "And you're saying that once the bug goes away, it won't come back until you quit and relaunch Xcode. And vice versa."

Magic Fairy: "Yeah."

Programmer: "And that the bug actually never actually affects the project file on disk."

Magic Fairy: "Right. The bug exists only in the spirit world."

Programmer: "You mean the computer's volatile memory."

Magic Fairy: "Whatever. You can use any abstraction that let's you wrap your little mind around it."

Programmer: "So to really test whether something -- a scheme setting, a target name, the project name -- affects whether or not this bug manifests and breaks Xcode's test functionality, you have to make the change and perform the quit-relaunch-test sequence a bunch of times."

Magic Fairy: "Ten times."

Programmer: "Ten times."

Magic Fairy: "Yeah."

Programmer: "So how did you figure this out?"

Magic Fairy: "Well, chicks tend to be more methodical about this kind of thing. No need get all furious like some testosterone-overloaded roid-rager and smash your mouse down on the desk, or throw your beverage can against the wall. We don't tend to get so... emotional. I mean, it's just a software bug. That makes it easier to keep a clear head and debug what is really going on."

Programmer: "We don't really have to name the project after you, do we."

Magic Fairy: "No."

Programmer: "But the name cannot be the same as the command line executable."

Magic Fairy: "Correct."

Programmer: "How about 'babe-rater project.xcodeproj'?"

Magic Fairy: "No. The project name must not even contain the name of the command line tool that it builds. Otherwise this bug will be summoned. Sometimes."

Programmer: "But that's fucking lame! The project builds a tool called 'babe-rater'. Doesn't it make sense that the project should be named 'babe-rater.xcodeproj', or at least 'babe-rater something'?"

Magic Fairy: "It's not a matter of what makes sense. It's a matter of what stops the bug from being summoned."

Programmer: "Well, did you at least file a bug?"

Magic Fairy: "Sigh. No I did not file a bug. I find Apple's bug reporting process pretty odious, to be frank. Their system is slow and cumbersome. Most bugs are marked 'Duplicate' and they don't even show you the courtesy of giving you read permissions on the bug that yours is a dupe of. It's like throwing your effort into a black hole. A black hole with no manners."

Programmer: "Well, I don't want to have to keep giving my Xcode projects names that don't reflect what the project actually builds!"

Magic Fairy: "Then why don't you file a fucking bug, sweetheart."

Programmer: "Big mouth for such a little girl, eh?"

Programmer: "Shut up, dude. Okay, I'll file a bug."

Programmer: "Okay, let's see... bugreporter.apple.com. Okay, here we go:

Title: Xcode randomly uses wrong executable for Test, runs no tests, reports tests pass Product: Developer Tools Version: 4.2.1 Summary: Xcode 4.2.1 becomes confused internally, and uses the wrong executable during the Test action. Instead of executing the executable specified in the Xcode scheme, and injecting the test bundle into it and running the tests, it picks a different executable and tries to use that. This can lead to no tests being run. But Xcode reports that the Test action has succeeded, as if all tests have passed, when in reality no tests have been run. Worst of all, though, this bug has a random component (it will happen say 3 to 6 times out of 10 launches of Xcode). The random component can make it extremely time-consuming for the developer to debug, since they may try various things to make it stop happening and get a false positive result. Steps to Reproduce: We have determined reproduction steps as described below. Note that these are not the only reproduction steps, as we've seen this bug hit in the wild when we didn't follow these exact steps. These are just the most succinct ones we could come up with. It is kind of complicated, so there is a bug demo project with a git commit at each step, located at: https://github.com/masonmark/ XcodeCorruptOnOpenBugDemo You may find it easier to just check out that version to see the bug in action. Otherwise: 1. Create a new application project using the built-in "Cocoa Application" template. Check the "Include Unit Tests" option so it also creates a test bundle. Use the project name "XcodeCorruptOnOpenBugDemo". 2. Run the Test action (Cmd-U) to be sure the tests fail as they should (the default test fails). 3. Add a new Target to the project, using the built-in 'Command Line Tool' template. For the product name, put 'XcodeCorruptOnOpenBugDemoTool'. Hit Cmd-U, confirm 'Test Failed', quit Xcode. 4. Reopen project. In the 'Manage Schemes' dialog, delete the scheme 'XcodeCorruptOnOpenBugDemoTool' that was automatically created in step 3. Hit Cmd-U, confirm 'Test Failed', quit Xcode. 5. Reopen project. Rename the original 'XcodeCorruptOnOpenBugDemo' target (the .app bundle) to 'XcodeCorruptOnOpenBugDemo-app'. Next rename the original 'XcodeCorruptOnOpenBugDemoTool' target to 'XcodeCorruptOnOpenBugDemo'. (NOTE: The reason for doing this in the real world is that we really want to build a command line tool, not an .app bundle. But since Xcode 4.2.1 cannot run tests against a command line tool, this project will also build an .app bundle against which to run the test. The test host .app will include all the classes from the command line tool, so that they may be unit tested.) 6. Reopen project. Hit Cmd-U. Note that you now get 'Test Succeeded' even though you shouldn't. Xcode is now using the command line executable instead of the app bundle to run the tests. (This is the mild form of the bug.) 7. Rename the project, from within Xcode. Append " project" so that the project name becomes "XcodeCorruptOnOpenBugDemo project". Decline Xcode's offer to rename other things for you. Quit Xcode. 8. Now, do the following ten (10) times: 8a. Reopen the project. 8b. Cmd-U to run the tests. 8c. On a scrap of paper, if Xcode indicates test failure, write 'OK', otherwise write 'BOGUS'. 8d. Quit Xcode. Expected Results: The expected results are that Xcode runs the test bundle as specified in the scheme. That is, it should launch the 'XcodeCorruptOnOpenBugDemo-app.app' executable, inject the test bundle, run the test, and report the failure. Your scrap of paper should say 'OK OK OK OK OK OK OK OK OK OK'. Actual Results: The actual result is that Xcode sometimes, at random, decides to run the 'XcodeCorruptOnOpenBugDemo' command line tool executable instead. In this case, no tests will be executed, so no tests will fail, so Xcode will report 'Test Succeeded'. In my test while writing this bug report, I just got 'OK OK OK BOGUS OK BOGUS BOGUS BOGUS BOGUS BOGUS' Regression: We can reproduce the bug at will with an Xcode 4.2.1 project, created from the Xcode 4.2.1 built in templates, that has one .app bundle target, one .octest bundle target, and one command-line tool target. We have not investigated whether it happens with a project with two .app bundle targets and no command-line tool targets. Notes: 1.) If the bug was just as we left it in Step 6, it would still be a bug, but not such a big deal. A programmer could probably figure out that if the project name was the same as the command-line tool's name, Xcode would mistakenly use the command-line tool to run the tests. But the fact that the project need only CONTAIN the name of the command-line tool executable, combined with the fact that the bug only occurs 30% to 60% of the time, made this take HOURS to figure out. 2.) For whatever reason, whether or not the bug occurs is somehow decided when Xcode launches. You have to actually quit and relaunch Xcode to have a chance at getting the opposite behavior. Simply closing and reopening the project doesn't do it. 3.) For the exciting story of two hapless programmers who encounter this bug and find their lives turned upside down in a frenzy of violence, magic, and poignant human drama, see: httProgrammer://masonmark.com/the-xcode -fairy 4.) The demo project is on GitHub at the URL below. However, please ignore the commentary about copying the command-line executable into the test bundle. That step turns out to be unnecessary to trigger the bug. https://github.com/masonmark/ XcodeCorruptOnOpenBugDemo 5.) I think there are two related bugs here: Xcode sometimes lying about test results, and Xcode no longer being able to run tests against command line tools. I'll file those separately."

Programmer: "You will, huh? You up your Adderall dose or something?"

Magic Fairy: "I think you should add 'Thanks.' at the bottom."

Programmer: "Okay, added. Now I'll just click Submit here, and... fuck!"

Magic Fairy: "Ha ha ha! Typical!"

Programmer: "What? What does it say?"

Programmer: "It says java.io.EOFException Broken pipe."

Programmer: "Hit Submit again."

Programmer: "Now it says, Broken pipeBroken pipe."

Magic Fairy: "Ha ha ha! Ha ha ha!"

Programmer: "Okay, I'm gonna log out and log back in and paste that in. And... Okay. Filed. Bug ID# 10532871."

Programmer: "Fuck it dude, I'm outta here. You and your little friend can file all the bug reports you want. All I care about is that we can work around it, which we now can. I'll see you Monday. "

Programmer: "Whatever. Bye."

Magic Fairy: "I don't like your friend."

Programmer: "We're not exactly friends."

Magic Fairy: "Okay."

Programmer: "You wanna like, uh, go get a drink or something?"

Magic Fairy: "I'm not really much of a drinker."

Programmer: "Oh. Well, um, I guess--"

Magic Fairy: "I'd smoke a little weed if you got it, though."

Programmer: "What? Uh, sure, sure! I don't have any on me, but my place is only a few minutes away. Let's go."

Magic Fairy: "What about those other bug reports?"

Programmer: "Fuck it. One good deed per day's enough for me. Come on."

Magic Fairy: "โ™ช โ™ฌ โ˜† โ™กใƒปใƒปใƒป"

At this point, as the programmer gathers up his gear and his bag and heads for the exit, from her vantage point floating along behind him, the magical fairy might see him tear off and crumple up and discard a piece of graph paper from his notebook, upon which was scrawled:

Rename project to 'FUCKXCODE': 10 launches, OK. Rename project to 'FUCKXCODE babe-rater' 1. BOGUS 2. OK 3. OK 4. BOGUS 5. BOGUS 6. BOGUS 7. BOGUS 8. BOGUS 9. OK 10. BOGUS Rename project to 'FUCKXCODE-babe-rater' 1. OK 2. BOGUS 3. OK 4. BOGUS 5. OK 6. OK 7. OK 8. OK 9. BOGUS 10. BOGUS Turn off parallelize: 1. OK 2. OK 3. OK 4. BOGUS 5. BOGUS 6. BOGUS 7. OK 8. BOGUS 9. OK 10. OK (turn it back on since it made no difference) Rename project to 'babe rater' 1. OK 2. OK 3. OK 4. OK 5. OK (cleaned here) 6. OK 7. OK 8. OK 9. OK 10. OK Rename scheme to same as tool 0. OK 1. OK 2. OK 3. OK 4. OK 5. OK 6. OK 7. OK 8. OK 9. OK Conclusion: scheme name actually not relevant. Rename project to known problem 'babe-rater project' and run ten times without quitting: 1 - 10. BOGUS each time Same as above but with Clean Build Folder between each run: 1. BOGUS 2. BOGUS 3. BOGUS 4. BOGUS 5. BOGUS 6. BOGUS 7. BOGUS 8. BOGUS 9. BOGUS 10. BOGUS Next launch of Xcode, the same project happened to work, so I wanted to see if it would work over and over again if I didn't quit Xcode (still doing Clean Build Folder between each try). 1. OK 2. OK 3. OK 4. OK 5. OK 6. OK 7. OK 8. OK 9. OK 10. OK Quit Xcode, and the next launch it hit the BOGUS again. So it really does apparently involve something Xcode does when loading the project. How about if we close the project but don't quit Xcode(still doing Clean Build Folder between each try)? 1. OK 2. OK 3. OK 4. OK 5. OK 6. OK 7. OK 8. OK 9. OK 10. OK At this point I launched Xcode, hit Cmd-U, and quit a few times in a row. OK, BOGUS, BOGUS, BOGUS, OK... so cleaning also seems irrelevant. Somehow, Xcode decides at launch time whether or not it is going to corrupt the project when it is opened. If so, it reliably does it every time that project is opened, until Xcode quits. Then the next time Xcode is launched, it again randomly decides whether or not to corrupt the project upon opening it. Now is it the target name or the executable name (or both) that must differ from the project name? I suspect the executable but lets test. With project name 'XcodeCorruptOnOpenBOGUSDemo project' and target name 'XcodeCorruptOnOpenBOGUSDemo' and tool executable name 'XcodeCorruptOnOpenBOGUSDemoTool': 1. OK 2. OK 3. OK 4. OK 5. OK 6. OK 7. OK 8. OK 9. OK 10. OK Now, the reverse: With project name 'XcodeCorruptOnOpenBOGUSDemo project' and target name 'XcodeCorruptOnOpenBOGUSDemo target' and tool executable name 'XcodeCorruptOnOpenBOGUSDemo': 1. OK 2. OK 3. OK 4. OK 5. OK 6. OK 7. OK 8. OK 9. OK 10. OK Interesting! Now let's rename them both back to sanity check. With project name 'XcodeCorruptOnOpenBOGUSDemo project' and target name 'XcodeCorruptOnOpenBOGUSDemo' and tool executable name 'XcodeCorruptOnOpenBOGUSDemo': BOGUS BOGUS OK BOGUS OK BOGUS BOGUS BOGUS BOGUS BOGUS However, the BOGUS did manifest with these params: project name 'XcodeCorruptOnOpenBOGUSDemo' and target name 'XcodeCorruptOnOpenBOGUSDemo target' and tool executable name 'XcodeCorruptOnOpenBOGUSDemo' (exact same name for project and executable). I didn't test 10 times because at this point I am just looking for a workaround.

THE END

PREVIOUSLY:

2011-11-11
2011-10-12
2011-10-12
2011-08-10
2011-06-14
2011-03-09
2010-12-25
2010-11-03
2010-09-15
2010-08-25
2010-05-15
2010-04-18
2010-04-18
2010-01-13
2010-01-09
2009-03-25
2008-11-23
2008-11-05
2008-10-25
2008-08-20
2008-05-12
2008-04-08
2008-03-21
2008-01-29
1979-11-20