XCode从3.2.3升级到3.2.4后,单元测试不再有效

时间:2010-09-15 21:36:37

标签: iphone xcode octest

我刚刚将我的XCode更新为3.2.4,结果证明我的单元测试不再有效。我已在instructions from Scott Densmore之后配置了目标和可执行文件,以便我能够调试我的测试。

我确实为我的测试目标(LogicTests)将Base SDK更改为iOS4.1,并更新了我的可执行文件(otest)的otest脚本的路径。

然而,即使我的应用程序在iPhone模拟器中运行,执行单元测试也总是崩溃。以下是我尝试运行测试时控制台必须说的内容:

[Session started at 2010-09-15 23:28:37 +0200.]
GNU gdb 6.3.50-20050815 (Apple version gdb-1472) (Wed Jul 21 10:53:12 UTC 2010)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin".tty /dev/ttys014
Loading program into debugger…
Program loaded.
run
[Switching to process 12125]
warning: The target crashed on startup, maybe the shell is crashing.
"Try set start-with-shell 0" to workaround.

The Debugger has exited due to signal 6 (SIGABRT).The Debugger has exited due to signal 6 (SIGABRT).

我很感激你能提供的任何帮助!提前谢谢。

干杯, 乔治

1 个答案:

答案 0 :(得分:2)

也完全碰到了这个。发现我可以通过取消选中DYLD_FORCE_FLAT_NAMESPACE环境变量来运行我的测试。似乎会导致一些可怕的问题。如果我了解更多原因,我会发布它。