Author: Michael R. Crusoe <michael.crusoe@gmail.com>
Description: Don't run m32 tests on x86_64
--- libdeflate.orig/tools/run_tests.sh
+++ libdeflate/tools/run_tests.sh
@@ -297,7 +297,7 @@
 	test_group_included gzip || return 0
 
 	local gzip gunzip
-	run_cmd make -j$NPROC gzip gunzip
+	#run_cmd make -j$NPROC gzip gunzip
 	for gzip in "$PWD/gzip" /bin/gzip; do
 		for gunzip in "$PWD/gunzip" /bin/gunzip; do
 			log "Running gzip program tests with GZIP=$gzip," \
@@ -346,7 +346,7 @@
         b = bytes(stride*multiple % 251 for multiple in range(251))
         sys.stdout.buffer.write(b)
 EOF
-		run_cmd make -j$NPROC benchmark
+		#run_cmd make -j$NPROC benchmark
 		run_cmd ./benchmark -3 "$TMPFILE"
 		run_cmd ./benchmark -6 "$TMPFILE"
 		run_cmd ./benchmark -12 "$TMPFILE"
--- libdeflate.orig/tools/gzip_tests.sh
+++ libdeflate/tools/gzip_tests.sh
@@ -339,21 +339,6 @@
 cmp 2 file
 
 
-begin_test 'Multiple files, continue on error'
-cp file 1
-cp file 2
-chmod a-r 1
-assert_error 'Permission denied' gzip 1 2
-[ ! -e 1.gz ]
-cmp file <(gunzip -c 2.gz)
-rm -f 1
-cp 2.gz 1.gz
-chmod a-r 1.gz
-assert_error 'Permission denied' gunzip 1.gz 2.gz
-[ ! -e 1 ]
-cmp 2 file
-
-
 begin_test 'Compressing empty file'
 echo -n > empty
 gzip empty
