diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-09-16 09:55:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-16 09:55:56 +0200 |
commit | ccee741973a182f65af4e58302c9a76107974f0a (patch) | |
tree | df1c78b6ad1f044b394862629c08c7a207d67a09 /test/apiv2 | |
parent | 0e3a0ec7d485a81b7ca38997e93bea69ad95d79a (diff) | |
parent | cfbc4aaeb50b5fb12ec9363328bb08fc459a1067 (diff) | |
download | podman-ccee741973a182f65af4e58302c9a76107974f0a.tar.gz podman-ccee741973a182f65af4e58302c9a76107974f0a.tar.bz2 podman-ccee741973a182f65af4e58302c9a76107974f0a.zip |
Merge pull request #15829 from edsantiago/shlint
Cleanup: fix problems reported by shell lint
Diffstat (limited to 'test/apiv2')
-rwxr-xr-x | test/apiv2/test-apiv2 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/apiv2/test-apiv2 b/test/apiv2/test-apiv2 index b762cff9e..8132e6432 100755 --- a/test/apiv2/test-apiv2 +++ b/test/apiv2/test-apiv2 @@ -272,8 +272,8 @@ function t() { esac done if [[ -z "$curl_args" ]]; then - curl_args=(-d $(jsonify ${post_args[@]})) - testname="$testname [${curl_args[@]}]" + curl_args=(-d $(jsonify ${post_args[*]})) + testname="$testname [${curl_args[*]}]" fi fi @@ -336,7 +336,7 @@ function t() { # Any error from curl is instant bad news, from which we can't recover if [[ $rc -ne 0 ]]; then - die "curl failure ($rc) on $url - cannot continue" + die "curl failure ($rc) on $url - cannot continue. args=${curl_args[*]}" fi # Show returned headers (without trailing ^M or empty lines) in log file. @@ -384,7 +384,7 @@ function t() { # Special case: if response code does not match, dump the response body # and skip all further subtests. - if [[ $actual_code != $expected_code ]]; then + if [[ "$actual_code" != "$expected_code" ]]; then echo -e "# response: $output" for i; do _show_ok skip "$testname: $i # skip - wrong return code" @@ -671,11 +671,11 @@ echo -e "collected ${#tests_to_run[@]} items\n" start_service -for i in ${tests_to_run[@]}; do +for i in "${tests_to_run[@]}"; do TEST_CONTEXT="[$(basename $i .at)]" # Clear output from 'podman' helper - >| $WORKDIR/output.log + truncate --size=0 $WORKDIR/output.log source $i done |