mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-14 03:08:27 +03:00
14 lines
443 B
Bash
Executable File
14 lines
443 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
find ./tests_ok ./tests_failed -maxdepth 1 -type f -name '*.curl' ! -name '*windows*'|sort | while read -r f; do
|
|
echo "** $f"
|
|
grep -v '^$' <"$f" | grep -v '^#' | while read -r line; do
|
|
echo "$line"
|
|
cmd="$line --no-progress-meter --output /dev/null --fail"
|
|
echo "$cmd" | bash || (echo ">>> Error <<<<" && exit 1)
|
|
done
|
|
echo
|
|
done
|
|
|
|
echo "all curl commands have been run with success!"
|