在线笔记
全部博文(596)
发布时间:2013-04-23 11:25:30
http://www.taobaotesting.com/blogs/qa?bid=84511、背景介绍GCOV是一个GNU的本地覆盖测试工具, 伴随GCC发布,配合GCC共同实现对C或者C++文件的语句覆盖和分支覆盖测试。是一个命令行方式的控制台程序。需要工具链的支持。LCOV由 IBM 开发,由 Linux Test Project 维护的开放源代码工具。是GCOV结果展现的一.........【阅读全文】
发布时间:2013-04-23 10:34:19
#!/bin/shwhile [ "1" = "1" ]do# do somethingdone#!/bin/shwhile test "1" = "1" do# do somethingdone#: 表示空语句#/bin/shwhile :.........【阅读全文】
发布时间:2013-04-17 23:34:27
$sudo apt-get install linux-headers-$(uname -r)......【阅读全文】
发布时间:2013-04-17 22:46:06
1.安装sudo apt-get install linux-tools-common sudo apt-get install linux-tools或者http://manpages.ubuntu.com/manpages/lucid/man1/perf.1.html2.教程https://code.google.com/p/kernel/wiki/PerfUserGuidehttp://www.ibm.com/developerworks/cn/linux/l-cn-perf1/?ca=drs-......【阅读全文】