我有许多功能和相应的单元测试。我想将测试嵌入代码库本身。我想出了以下解决方案:
void a() {
// this code should be tested
}
__attribute__((section(".tests")))
void a_test() {
// test if a() works
}
测试放置在.tests
我可以为发布构建剥离的部分中。我尝试了以下方法:
$ gcc -c a.c -o a.orig.o # a.c is shown above
$ objcopy -R.tests a.orig.o a.o
objcopy: a.o: symbol `.tests' required but not present
objcopy:a.o: no symbols
我发现这个问题描述了一个类似的问题,答案说这是因为该部分是从某个地方交叉引用的。
我认为.eh_frame
这是有罪的部分,因为删除它会起作用:
$ objcopy -R.tests -R.eh_frame a.orig.o a.o
- 我可以删除此部分而不会产生任何后果吗?
- 有没有更好的方法来解决这个问题?