mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
2b7b142e97
This allows them to be executed in parallel and also gives us better reporting. The dump files are renamed to avoid repeating "dmidecode-dump", since that string is already present in the subdirectory name.
18 lines
303 B
Bash
Executable File
18 lines
303 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")
|
|
trap "rm '$output'" EXIT INT QUIT PIPE
|
|
|
|
(
|
|
set -x
|
|
"$dmi_memory_id" -F "$input" >$output
|
|
diff -u "$output" "$expected"
|
|
)
|