1
0
Fork 0
systemd/test/udev-dmi-memory-id-test.sh
Daniel Baumann ce097cb8f4
Adding upstream version 257.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 18:07:44 +02:00

18 lines
333 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")
# shellcheck disable=SC2064
trap "rm '$output'" EXIT INT QUIT PIPE
(
set -x
"$dmi_memory_id" -F "$input" >"$output"
diff -u "$output" "$expected"
)