Systemd/test/udev-dmi-memory-id-test.sh
Zbigniew Jędrzejewski-Szmek 2b7b142e97 meson: make each dmidecode a separate test
This allows them to be executed in parallel and also gives us
better reporting.

The dump files are renamed to avoid repeating "dmidecode-dump", since that
string is already present in the subdirectory name.
2020-12-17 09:21:29 +01:00

18 lines
303 B
Bash
Executable file

#!/bin/sh
# SPDX-License-Identifier: LGPL-2.1-or-later
set -e
dmi_memory_id="$1"
input="$2"
expected="$3"
output=$(mktemp --tmpdir "test-udev-dmi-memory-id.XXXXXXXXXX")
trap "rm '$output'" EXIT INT QUIT PIPE
(
set -x
"$dmi_memory_id" -F "$input" >$output
diff -u "$output" "$expected"
)