mirror of
https://github.com/clearlinux/swupd-server.git
synced 2026-08-18 12:37:04 +00:00
37f84501eb
Signed-off-by: Icarus Sparry <icarus.w.sparry@intel.com>
14 lines
236 B
Bash
Executable File
14 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export BATS_TEST_DIRNAME=$PWD
|
|
export TIMEFORMAT
|
|
TIMEFORMAT="time %R %P%% (%U+%S)"
|
|
source ../swupdlib.bash
|
|
exec 3< rundata
|
|
|
|
while read -r -u 3
|
|
do
|
|
read -i "$REPLY" -e CMD
|
|
eval "set -x ; time ( $CMD ) ; set +x "
|
|
done
|