我有许多功能和相应的单元测试。我想将测试嵌入到代码库本身中。我想出了以下解决方案:
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
我发现this question描述了一个类似的问题,答案是因为该节是从某个地方交叉引用的。
我认为.eh_frame
是有罪的部分,因为将其删除会
工作:
$ objcopy -R.tests -R.eh_frame a.orig.o a.o
答案 0 :(得分:2)
丢弃链接描述文件中的部分。