diff options
author | Alex Auvolat <alex@adnab.me> | 2022-01-17 10:43:07 +0100 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2022-01-17 12:56:29 +0100 |
commit | 7c049f1c94f1695d316197f75fc2c0248bf9a2d3 (patch) | |
tree | b5fe3e05104c0836d5b929f5e886e4793b7600e4 /script/test-smoke.sh | |
parent | fdcddbe168f5faa89e1da22051aa5b58f85038f2 (diff) | |
download | garage-7c049f1c94f1695d316197f75fc2c0248bf9a2d3.tar.gz garage-7c049f1c94f1695d316197f75fc2c0248bf9a2d3.zip |
Fix extreme value to be less extreme so that integration test works on 32bits
Diffstat (limited to 'script/test-smoke.sh')
-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 |