3

我刚刚将我的 XCode 更新到 3.2.4,结果发现我的单元测试不再有效。我已经按照 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).

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

干杯,乔治

4

1 回答 1

2

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

于 2010-10-01T18:25:20.260 回答