mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 08:42:06 +03:00
14 lines
406 B
Bash
Executable File
14 lines
406 B
Bash
Executable File
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
set +eo pipefail
|
|
# if curl/libcurl on this system does not support --aws-sigv4
|
|
# simply ignore test
|
|
# FIXME: remove this workaround once all integration test targets have aws-sigv4 support in libcurl
|
|
if curl --aws-sigv4 2>&1 | grep -q 'option --aws-sigv4: is unknown'; then
|
|
exit 0
|
|
fi
|
|
|
|
set -Eeuo pipefail
|
|
hurl --user someAccessKeyId:someSecretKey tests_ok/aws_sigv4.hurl
|