aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbenchmarks.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/benchmarks.sh b/benchmarks.sh
index 42be6df..fce9993 100755
--- a/benchmarks.sh
+++ b/benchmarks.sh
@@ -43,7 +43,15 @@ exit 1
}
rm -Rf $OUTPUT_FILE
-policies=$(ls /sys/devices/system/cpu/cpufreq)
+
+cpufreq_content=$(ls /sys/devices/system/cpu/cpufreq)
+policies=""
+for elem in $cpufreq_content;
+do
+ if [[ "$elem" == "policy"* ]]; then
+ policies+="${elem} "
+ fi
+done
[ -z "$policies" ] && default_system_test
declare -A cur_policy=()