1
我目前正在編寫一個bash測試框架,我想測量每個測試方法執行的時間。此外,我想將這些加起來並顯示完整的執行時間。測量執行時間並最終添加它們
我知道你可以使用time
來衡量例如執行時間。一個函數,但我不知道如何存儲單個結果並添加它們。
時間是否真的是工作的正確工具?或者我應該使用類似date
的東西?
示例代碼:
declare -a execution_times
# somehow measure execution time of test function
# add the individual execution time
execution_times+=(execution_time)
for execution_time in "${execution_times[@]}"; do
# compute full execution time
done