快速学习C语言二: 编译自动化, 静态分析, 单元测试,coredump调试,性能剖析
上次的Hello world算是入门了,现在学习一些相关工具的使用
编译自动化
写好程序,首先要编译,就用gcc就好了,基本用法如下
gcc helloworld.c -o helloworld.o
helloworld.c是源码,helloworld.o是编译后的可执行文件,运行的话就用 ./helloworld.o
就可以了。
但是如果代码写的多了,每次改动完都手动用gcc编译太麻烦了,所以要用Makefile来 自动化这项工作,在当前目录下创建Makefile文件,大概如下
helloworld.o: helloworld.c
gcc helloworld.c -o helloworld.o .PHONY: lint
lint:
splint helloworld.c -temptrans -mustfreefresh -usedef .PHONY: run
run:
./helloworld.o .PHONY: clean
clean:
rm *.o
缩进为0每一行表示一个任务,冒号左边的是目标文件名,冒号后面是生成该目标的依赖 文件,多个的话用逗号隔开,如果依赖文件没有更改,则不会执行该任务。
缩进为1的行表示任务具体执行的shell语句了,.PHONY修饰的目标表示不管依赖文件 有没有更改,都执行该任务。
执行对应的任务的话,就是在终端上输入make 目标名
,如make lint
表示源码检查, make clean
表示清理文件,如果只输入make,则执行第一个目标,对于上面的文件就 是生成helloworld.o了。
现在修改完源码,值需要输入一个make回车就行了,Makefile很强大,可以做很多自动化 的任务,甚至测试,部署,生成文档等都可以用Makefile来自动化,有点像前端的 Grunt和Java里的ant,这样就比较好理解了。
静态检查
静态检查可以帮你提前找出不少潜在问题来,经典的静态检查工具就是lint,具体到 Linux上就是splint了,可以用yum来安装上。
具体使用的话就是splint helloworld.c
就行了,它会给出检查出来的警告和错误,还 提供了行号,让你能很快速的修复。
值得注意的是该工具不支持c99语法,所以写代码时需要注意一些地方,比如函数里声明 变量要放在函数的开始,不能就近声明,否则splint会报parse error。
静态检查工具最好不要忽略warning,但是有一些警告莫名其妙,我看不懂,所以还是 忽略了一些,在使用中我加上了-temptrans -mustfreefresh -usedef
这几个参数。
单元测试
安装CUnit
wget http://sourceforge.net/projects/cunit/files/latest/download
tar xf CUnit-2.1-.tar.bz2
cd CUnit-2.1-
./bootstrap
./configure
make
make install
了解下单元测试的概念: 一次测试(registry)可以分成多个suit,一个suit里可以有多个 test case, 每个suit有个setup和teardown函数,分别在执行suit之前或之后调用。
下面的代码是一个单元测试的架子,这里测试的是库函数strlen,这里面只有一个suit, 就是testSuite1,testSuit1里里有一特test case,就是testcase,testcase里有一个 测试,就是test_string_length。
整体上就是这么一个架子,suit,test case, test都可以往里扩展。
#include <assert.h>
#include <stdlib.h>
#include <string.h> #include <CUnit/Basic.h>
#include <CUnit/Console.h>
#include <CUnit/CUnit.h>
#include <CUnit/TestDB.h> // 测试库函数strlen功能是否正常
void test_string_lenth(void){
char* test = "Hello";
int len = strlen(test);
CU_ASSERT_EQUAL(len,);
} // 创建一特test case,里面可以有多个测试
CU_TestInfo testcase[] = {
{ "test_for_lenth:", test_string_lenth },
CU_TEST_INFO_NULL
}; // suite初始化,
int suite_success_init(void) {
return ;
} // suite 清理
int suite_success_clean(void) {
return ;
} // 定义suite集, 里面可以加多个suit
CU_SuiteInfo suites[] = {
// 以前的版本没有那两个NULL参数,新版需要加上,否则就coredump
//{"testSuite1", suite_success_init, suite_success_clean, testcase },
{"testSuite1", suite_success_init, suite_success_clean, NULL, NULL, testcase },
CU_SUITE_INFO_NULL
}; // 添加测试集, 固定套路
void AddTests(){
assert(NULL != CU_get_registry());
assert(!CU_is_test_running()); if(CUE_SUCCESS != CU_register_suites(suites)){
exit(EXIT_FAILURE);
}
} int RunTest(){
if(CU_initialize_registry()){
fprintf(stderr, " Initialization of Test Registry failed. ");
exit(EXIT_FAILURE);
}else{
AddTests(); // 第一种:直接输出测试结果
CU_basic_set_mode(CU_BRM_VERBOSE);
CU_basic_run_tests(); // 第二种:交互式的输出测试结果
// CU_console_run_tests(); // 第三种:自动生成xml,xlst等文件
//CU_set_output_filename("TestMax");
//CU_list_tests_to_file();
//CU_automated_run_tests(); CU_cleanup_registry(); return CU_get_error(); } } int main(int argc, char* argv[]) {
return RunTest();
}
然后Makefile里增加如下代码
INC=-I /usr/local/include/CUnit
LIB=-L /usr/local/lib/ test: testcase.c
gcc -o test.o $(INC) $(LIB) -g $^ -l cunit
./test.o .PHONY: test
再执行make test就可以执行单元测试了,结果大约如下
gcc -o test.o -I /usr/local/include/CUnit -L /usr/local/lib/ -g testcase.c -l cunit
./test.o CUnit - A unit testing framework for C - Version 2.1-
http://cunit.sourceforge.net/ Suite: testSuite1
Test: test_for_lenth: ...passed Run Summary: Type Total Ran Passed Failed Inactive
suites n/a
tests
asserts n/a Elapsed time = 0.000 seconds
可以看到testSuite1下面的test_for_lenth通过测试了。 注意一下,安装完新的动态库后记得ldconfig,否则-l cunit可能会报错 如果还是不行就要 /etc/ld.so.conf 看看有没有 /usr/local/lib , cunit默认把库都放这里了。
调试coredump
就上面的单元测试, 如果使用注释掉那行,执行make test时就会产生coredump。如下
// 定义suite集, 里面可以加多个suit
CU_SuiteInfo suites[] = {
{"testSuite1", suite_success_init, suite_success_clean, testcase },
//{"testSuite1", suite_success_init, suite_success_clean, NULL, NULL, testcase },
CU_SUITE_INFO_NULL
};
但默认coredump不会保存在磁盘上,需要执ulimit -c unlimited
才可以,然后要 指定一下coredump的路径和格式:
echo "/tmp/core-%e-%p" > /proc/sys/kernel/core_pattern
其中%e是可执行文件名,%p是进程id。然后编译这段代码的时候要加上-g的选项,意思 是编译出调试版本的可执行文件,在调试的时候可以看到行号。
gcc -o test.o -I /usr/local/include/CUnit -L /usr/local/lib/ -g testcase.c -l cunit
在执行./test.o后就会产生一个coredump了,比如是/tmp/core-test.o-16793, 这时候 用gdb去调试该coredump,第一个参数是可执行文件,第二个参数是coredump文件
gdb test.o /tmp/core-test.o-
挂上去后默认会有一些输出,其中有如下
Program terminated with signal , Segmentation fault.
说明程序遇到了段错误,崩溃了,一般段错误都是因为内存访问引起的, 我们想知道 引起错误的调用栈, 输入bt回车,会看到类似如下的显示
(gdb) bt
# 0x00007fe1b0b22cb2 in CU_register_nsuites () from /usr/local/lib/libcunit.so.
# 0x00007fe1b0b22d28 in CU_register_suites () from /usr/local/lib/libcunit.so.
# 0x0000000000400a8a in AddTests () at testcase.c:
# 0x0000000000400adf in RunTest () at testcase.c:
# 0x0000000000400b13 in main (argc=, argv=0x7fff4fa51928) at testcase.c:
这样大概知道是咋回事了,报错在testcase.c的46行上,再往里就是cunit的调用栈了, 我们看不到行号,好像得有那个so的调试信息才可以,目前还不会在gdb里动态挂符号文件 ,所以就先不管了,输入q退出调试器,其它命令用输入help学习下。
if(CUE_SUCCESS != CU_register_suites(suites)){
就调用了一个CU_register_suites函数,函数本身应该没有错误,可能是传给他从参数 有问题,就是那个suites,该参数构建的代码如下:
CU_SuiteInfo suites[] = {
{"testSuite1", suite_success_init, suite_success_clean, testcase },
CU_SUITE_INFO_NULL
};
是个CU_SuiteInfo的数组,就感觉是构建这个类型没构建对,然后就看他在哪儿定义 的
# grep -n "CU_SuiteInfo" /usr/local/include/CUnit/*
/usr/local/include/CUnit/TestDB.h:696:typedef struct CU_SuiteInfo {
在/usr/local/include/CUnit/TestDB.h的696行,具体如下
typedef struct CU_SuiteInfo {
const char *pName; /**< Suite name. */
CU_InitializeFunc pInitFunc; /**< Suite initialization function. */
CU_CleanupFunc pCleanupFunc; /**< Suite cleanup function */
CU_SetUpFunc pSetUpFunc; /**< Pointer to the test SetUp function. */
CU_TearDownFunc pTearDownFunc; /**< Pointer to the test TearDown function. */
CU_TestInfo *pTests; /**< Test case array - must be NULL terminated. */
} CU_SuiteInfo;
可以看到,该结构有6个成员,但我们定义的时候只有4个成员,没有设置pSetUpFunc和 pTearDownFunc的,所以做如下修改就能修复该问题了。
- {"testSuite1", suite_success_init, suite_success_clean, testcase },
+ {"testSuite1", suite_success_init, suite_success_clean, NULL, NULL, testcase },
对了,gdb用yum安装就行了。
性能剖析
好些时候我们要去分析一个程序的性能,比如哪个函数调用了多少次,被谁调用了, 平均每次调用花费多少时间等。这时候要用gprof,gprof是分析profile输出的。 要想执行时输出profile文件编译时要加-pg选项,
gcc -o helloworld.o -pg -g helloworld.c
./helloworld.o
执行上面语句后会在当前目录下生成gmon.out文件, 然后用gprof去读取并显示出来, 因为可能显示的比较长,所以可以先重定向到一个文件prof_info.txt里
gprof -b -A -p -q helloworld.o gmon.out >prof_info.txt
参数的含义先这么用,具体可以搜,最后查看prof_info.txt里会有需要的信息, 大概 能看懂,具体可以搜。
Flat profile: Each sample counts as 0.01 seconds.
no time accumulated % cumulative self self total
time seconds seconds calls Ts/call Ts/call name
0.00 0.00 0.00 0.00 0.00 cmp_default
0.00 0.00 0.00 0.00 0.00 cmp_reverse
0.00 0.00 0.00 0.00 0.00 w_strlen
0.00 0.00 0.00 0.00 0.00 sort
0.00 0.00 0.00 0.00 0.00 change_str_test
0.00 0.00 0.00 0.00 0.00 concat_test
0.00 0.00 0.00 0.00 0.00 customer_manager
0.00 0.00 0.00 0.00 0.00 hello_world
0.00 0.00 0.00 0.00 0.00 n_hello_world
0.00 0.00 0.00 0.00 0.00 reverse
0.00 0.00 0.00 0.00 0.00 sort_test Call graph granularity: each sample hit covers byte(s) no time propagated index % time self children called name
0.00 0.00 / sort []
[] 0.0 0.00 0.00 cmp_default []
-----------------------------------------------
0.00 0.00 / sort []
[] 0.0 0.00 0.00 cmp_reverse []
-----------------------------------------------
0.00 0.00 / reverse []
0.00 0.00 / main []
0.00 0.00 / concat_test []
[] 0.0 0.00 0.00 w_strlen []
-----------------------------------------------
快速学习C语言二: 编译自动化, 静态分析, 单元测试,coredump调试,性能剖析的更多相关文章
- 快速学习C语言一: Hello World
估计不会写C语言的同学也都听过C语言,从头开始快速学一下吧,以后肯定能用的上. 如果使用过其它类C的语言,如JAVA,C#等,学C的语法应该挺快的. 先快速学习并练习一些基本的语言要素,基本类型,表达 ...
- 快速学习C语言三: 开发环境, VIM配置, TCP基础,Linux开发基础,Socket开发基础
上次学了一些C开发相关的工具,这次再配置一下VIM,让开发过程更爽一些. 另外再学一些linux下网络开发的基础,好多人学C也是为了做网络开发. 开发环境 首先得有个Linux环境,有时候家里机器是W ...
- 快速学习C语言途径,让你少走弯路
1.标准C语言能干什么? 坦白讲,在今天软件已经发展了半个多世纪,单纯的C语言什么都干不了.标准C语言库只提供了一些通用的逻辑运算方法以及字符串处理,当然字符串在C语言看来也是一种操作内存的方法,所以 ...
- scala快速学习笔记(二):控制结构,类和对象
IV.控制结构 1.if/else 除基本用法外,if/else语句能用来赋值,进而代替?:运算符.这得益于在Scala中,每个语句块都有值,就是该语句块最后一个语句的值.请看下面的代码. def a ...
- 快速学习C语言四: 造轮子,ArrayList
高级语言里的列表是最常用的数据结构,在C里造个轮子玩玩,C没有泛型,先用int练习. Collection的ADT一般有hasnext,next,add, remove操作,List一般还加了remo ...
- Dynamic CRM 2013学习笔记(二)插件基本用法及调试
插件是可与 Microsoft Dynamics CRM 2013 和 Microsoft Dynamics CRM Online 集成的自定义业务逻辑(代码),用于修改或增加平台的标准行为.也可 ...
- Go学习笔记(二)搭建Visual Studio Code调试环境
上一篇 Go学习笔记(一)安装Go语言环境 安装Visual Studio Code 这是目前我觉得最好用的文本编辑器了, https://code.visualstudio.com/ 中间有几部确认 ...
- 学习swift语言的快速入门教程推荐
随着苹果产品越来越火爆,苹果新推出的swift必定将在很大程度上代替oc语言.学好swift语言,对于IOS工程师来讲,已经是一门必备技能. 有一些比较好的英文版教程,值得学习. 1. Swift T ...
- Dart语言快速学习上手(新手上路)
Dart语言快速学习上手(新手上路) // 声明返回值 int add(int a, int b) { return a + b; } // 不声明返回值 add2(int a, int b) { r ...
随机推荐
- HR开发 获取信息类型数据
1.PNP逻辑数据库. LOOP获取信息类型数据. TABLES: PERNR . , . START-OF-SELECTION. GET PERNR . LOOP AT P0000 WHERE .. ...
- 九月二十八JS验证
js表单验证 js可用发来在数据被送往服务器前对HTML表单中的这些输入数据进行验证 被js验证的这些典型的表单数据有: >用户是否已填写表单中的必填项目: >用户输入的邮件地址是否是合法 ...
- 这有一个flag
1.并查集[1224] 2.最小生成树?? 3.topsort(好洋气): 4.归并排序[1438]: 5.差分约束系统: 6.A*算法找k短路 7.scanf: 8.搜索[P1198]华容道: 9. ...
- TCP/IP协议和HTTP协议 浩哥指教
TCP和IP在HTTP协议的上层,HTTP算是应用层,IP协议建立的是电脑跟电脑之间的联系,具体过程是,物理上,通过网线,解析MAC地址,到达路由,路由告诉数据将要去哪里,对方电脑通过NDS解析,解析 ...
- C#图片保存到本地
/// <summary> /// 上传微信头像到服务器 /// </summary> /// <param name="imgUrl">< ...
- Bomb
Description The counter-terrorists found a time bomb in the dust. But this time the terrorists impro ...
- 异常处理和JDBC
1.异常: 格式:try{ 要执行的可能出现异常的语句 } catch(Exception e){ 对异常进行处理的语句 } finally{ 一定会被处理的语句 //可以不写 } 当需要 ...
- beanstalkd----协议
Beanstalkd中文协议 总括 beanstalkd协议基于ASCII编码运行在tcp上.客户端连接服务器并发送指令和数据,然后等待响应并关闭连接.对于每个连接,服务器按照接收命令的序列依次处理并 ...
- swift3.0:associatedtype
E文:https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Lang ...
- VS2013 密钥 – 所有版本(Visual Studio Ultimate,Premium,Professional,TFS)
Visual Studio Ultimate 2013 KEY(密钥):BWG7X-J98B3-W34RT-33B3R-JVYW9 Visual Studio Premium 2013 KEY(密钥) ...