1
0
mirror of https://github.com/systemd/systemd synced 2024-07-01 07:34:28 +00:00
systemd/test/udev-dmi-memory-id-test.sh
2021-09-30 12:12:00 +02:00

19 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"
)