测量linux中的执行时间

时间:2015-07-10 10:00:18

标签: linux testing software-quality

所以我在linux下使用raspberry pi进行质量保证任务,7个程序是preload,preload.c,run_test,run_test.c,runit_mainain,runit_preload,runit_test。

我所做的是运行runit_preload,然后运行run_test,然后拔掉raspberry,最后运行runit_maintain。我需要记录每个程序的执行时间,但每次我尝试时间-p runit_preload或time -p ./preload.c时,都不会显示时间,而是再次运行程序。

1 个答案:

答案 0 :(得分:1)

如果您已经在C中使用过时间API(在C中搜索gettime函数),那么它将更容易,更准确。您可以在主函数的开头和结尾获得时间值并运行程序。多次重复此过程以获得最差的运行时间。