mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 10:13:34 +08:00
19 lines
333 B
Bash
Executable File
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"
|
|
)
|