blob: f1f4c26caa822629ba6d4dcdc50bec92e1e117d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/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"
)
|