1
0
mirror of https://github.com/systemd/systemd synced 2024-07-08 20:15:55 +00:00
systemd/test/udev-dmi-memory-id-test.sh

19 lines
333 B
Bash
Raw Normal View History

#!/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")
2021-09-29 18:30:08 +00:00
# shellcheck disable=SC2064
trap "rm '$output'" EXIT INT QUIT PIPE
(
set -x
2021-09-29 18:30:08 +00:00
"$dmi_memory_id" -F "$input" >"$output"
diff -u "$output" "$expected"
)