必须知道测试用例的开始和结束时间

必须知道测试用例的开始和结束时间

我们正在使用 red-hat enterprise Linux server 5.3,我们在 red-hat 中运行一些测试用例,如何找到服务器中测试用例的开始和结束时间,请指导我。

答案1

#!/bin/bash
date
./your-script-to-run-the-test-cases
date

或者,如果您只想查看运行需要多长时间,请使用time

time ./your-script-to-run-the-test-cases

答案2

如果您想要查找测试用例所花费的时间,可以执行以下操作:-

(time sh -c "sh my_script_for_test_case_execution") 2>&1 | grep "real" | awk '{print $(NF)}'

该数据将以 min.sec 格式为您提供测试用例执行所花费的准确时间。

相关内容