From 58daab21cd043e1dc37024a7f99b396788372918 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 9 Mar 2024 14:19:48 +0100 Subject: Merging upstream version 1.44.3. Signed-off-by: Daniel Baumann --- .../h2o/libh2o/deps/brotli/tests/roundtrip_test.sh | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 web/server/h2o/libh2o/deps/brotli/tests/roundtrip_test.sh (limited to 'web/server/h2o/libh2o/deps/brotli/tests/roundtrip_test.sh') diff --git a/web/server/h2o/libh2o/deps/brotli/tests/roundtrip_test.sh b/web/server/h2o/libh2o/deps/brotli/tests/roundtrip_test.sh new file mode 100755 index 000000000..9b05fce46 --- /dev/null +++ b/web/server/h2o/libh2o/deps/brotli/tests/roundtrip_test.sh @@ -0,0 +1,31 @@ +#!/bin/bash +# +# Roundtrip test for the brotli command-line tool. + +set -o errexit + +BRO=../tools/bro +INPUTS=""" +testdata/alice29.txt +testdata/asyoulik.txt +testdata/lcet10.txt +testdata/plrabn12.txt +../enc/encode.cc +../enc/dictionary.h +../dec/decode.c +$BRO +""" + +for file in $INPUTS; do + for quality in 1 6 9 11; do + echo "Roundtrip testing $file at quality $quality" + compressed=${file}.bro + uncompressed=${file}.unbro + $BRO -f -q $quality -i $file -o $compressed + $BRO -f -d -i $compressed -o $uncompressed + diff -q $file $uncompressed + # Test the streaming version + cat $file | $BRO -q $quality | $BRO -d >$uncompressed + diff -q $file $uncompressed + done +done -- cgit v1.2.3