mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-30 19:17:11 +03:00
15 lines
303 B
Bash
Executable File
15 lines
303 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for command_file in "$@"; do
|
|
echo "$command_file"
|
|
command=$(cat "$command_file")
|
|
expected=$(cat "${command_file%.*}.output")
|
|
output="$($command 2>&1)"
|
|
|
|
if [ "$output" != "$expected" ]; then
|
|
diff <(echo "$output" ) <(echo "$expected")
|
|
exit 1
|
|
fi
|
|
|
|
done
|