diff options
author | Alex Auvolat <alex@adnab.me> | 2022-01-17 10:43:07 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-01-17 10:43:07 +0100 |
commit | bb8b65d8490203e0c53e51c0ff20c1fb8fb22e65 (patch) | |
tree | 440ca595f2143d141b4f0f9952306e9b1b7527f3 | |
parent | f7349f40050dfb5dc4f4f49df5732686c8d846ba (diff) | |
download | garage-integration-test-32bit-fix.tar.gz garage-integration-test-32bit-fix.zip |
Fix extreme value to be less extreme so that integration test works on 32bitsintegration-test-32bit-fix
-rwxr-xr-x | script/test-smoke.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/test-smoke.sh b/script/test-smoke.sh index b85d9ed5..91bf90ab 100755 --- a/script/test-smoke.sh +++ b/script/test-smoke.sh @@ -137,7 +137,7 @@ if [ -z "$SKIP_AWS" ]; then aws s3api list-objects-v2 --bucket eprouvette --page-size 0 >$CMDOUT [ $(jq '.Contents | length' $CMDOUT) == 8 ] [ $(jq '.CommonPrefixes | length' $CMDOUT) == 0 ] - aws s3api list-objects-v2 --bucket eprouvette --page-size 999999999999999 >$CMDOUT + aws s3api list-objects-v2 --bucket eprouvette --page-size 999999999 >$CMDOUT [ $(jq '.Contents | length' $CMDOUT) == 8 ] [ $(jq '.CommonPrefixes | length' $CMDOUT) == 0 ] aws s3api list-objects-v2 --bucket eprouvette --page-size 1 >$CMDOUT |