summaryrefslogtreecommitdiff
path: root/automated/linux/unixbench/unixbench.sh
blob: e81aa52d481ef04436629929eac1ee3eeab4df5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/sh -e

# The purpose of UnixBench is to provide a basic indicator of the
# performance of a Unix-like system

# shellcheck disable=SC1091
. ../../lib/sh-test-lib

OUTPUT="$(pwd)/output"
RESULT_FILE="${OUTPUT}/result.txt"

while getopts 's:h' opt; do
    case "${opt}" in
        s) SKIP_INSTALL="${OPTARG}" ;;
        h|*) echo "Usage: $0 [-s <true|false>]" && exit 1 ;;
    esac
done

! check_root && error_msg "Please run this script as root."
[ -d "${OUTPUT}" ] && mv "${OUTPUT}" "${OUTPUT}_$(date +%Y%m%d%H%M%S)"
mkdir -p "${OUTPUT}"
cd "${OUTPUT}"

install_deps "git gcc perl" "${SKIP_INSTALL}"
# We need the recent fixes in master branch. Once they are included in the next
# release, we can switch to release version.
git clone https://github.com/kdlucas/byte-unixbench
cd "byte-unixbench/UnixBench/"
# -march=native and -mtune=native are not included in Linaro ARM toolchian
# that older than v6. Comment they out here.
cp Makefile Makefile.bak
sed -i 's/OPTON += -march=native -mtune=native/#OPTON += -march=native -mtune=native/' Makefile

log_parser() {
    prefix="$1"
    logfile="$2"

    # Test Result.
    egrep "[0-9.]+ [a-zA-Z]+ +\([0-9.]+ s," "${logfile}" \
        | awk -v prefix="${prefix}" '{printf(prefix)};{for (i=1;i<=(NF-6);i++) printf("-%s",$i)};{printf(" pass %s %s\n"),$(NF-5),$(NF-4)}' \
        | tee -a "${RESULT_FILE}"

    # Index Values.
    egrep "[0-9]+\.[0-9] +[0-9]+\.[0-9] +[0-9]+\.[0-9]" "${logfile}" \
        | awk -v prefix="${prefix}" '{printf(prefix)};{for (i=1;i<=(NF-3);i++) printf("-%s",$i)};{printf(" pass %s index\n"),$NF}' \
        | tee -a "${RESULT_FILE}"

    ms=$(grep "System Benchmarks Index Score" "${logfile}" | awk '{print $NF}')
    add_metric "${prefix}-System-Benchmarks-Index-Score" "pass" "${ms}" "index"
}

# Run a single copy.
./Run -c "1" | tee "${OUTPUT}/unixbench-single.txt"
log_parser "single" "${OUTPUT}/unixbench-single.txt"

# Run the number of CPUs copies.
if [ "$(nproc)" -gt 1 ]; then
    ./Run -c "$(nproc)" | tee "${OUTPUT}/unixbench-multiple.txt"
    log_parser "multiple" "${OUTPUT}/unixbench-single.txt"
fi