实际上,我真正的问题是:以下代码中的指示行有什么问题吗(“Causes SIGABRT”):
char* myFunc(char *param) {
char* leaked = new char[80]; // Intentionally leaked
if (param == NULL) throw logic_error("Parameter was null!"); // Causes SIGABRT
strcpy(leaked, param);
// Missing return, but never gets this far, so should be okay.
}
void test_non_happy_myFunc()
{
try {
myFunc(NULL);
} catch (logic_error&) {
cout << "Test succeeded!" << endl;
return;
}
cout << "Test FAILED!" << endl;
}
int main()
{
test_non_happy_myFunc();
}
我试图提出一个最小的测试用例发送给 IBM/Rational,以证明他们的 purify 软件存在问题,所以我首先由 SO 社区运行它。是的,我故意在第二行泄漏内存,是的,我知道当抛出异常时指针“泄漏”是统一化的。
上面的代码在使用 g++ 编译时在 purify 外部正常运行,但在 purify 内部运行时会导致核心转储。我在上面的代码中犯了一个新手错误(使 SIGABRT 成为我的错),还是我可以将矛头指向 IBM/Rational Purify?
编辑:(澄清)
不用purify在命令行运行,上面完整的程序打印:
Test succeeded!
在purify里面运行,净化报告:
COR: Fatal core dump
This is occurring while in thread 1299:
_p450static [rtlib.o]
abort [libc.so.6]
uw_init_context_1 [unwind-dw2.c:1256]
_Unwind_RaiseException [unwind.inc:88]
__cxa_throw [eh_throw.cc:78]
myFunc(char*) [exception_test.cc:9]
test_non_happy_myFunc() [exception_test.cc:17]
main [exception_test.cc:28]
请注意,在先决条件包括等之后,第 9 行最终成为我指出的行。