From 7c049f1c94f1695d316197f75fc2c0248bf9a2d3 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Mon, 17 Jan 2022 10:43:07 +0100 Subject: [PATCH] Fix extreme value to be less extreme so that integration test works on 32bits --- script/test-smoke.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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