1*01826a49SYabin Cui#!/bin/sh 2*01826a49SYabin Cui# gzip should report invalid 'unpack' input when uncompressing. 3*01826a49SYabin Cui# With gzip-1.5, it would output invalid data instead. 4*01826a49SYabin Cui 5*01826a49SYabin Cui# Copyright (C) 2012-2016 Free Software Foundation, Inc. 6*01826a49SYabin Cui 7*01826a49SYabin Cui# This program is free software: you can redistribute it and/or modify 8*01826a49SYabin Cui# it under the terms of the GNU General Public License as published by 9*01826a49SYabin Cui# the Free Software Foundation, either version 3 of the License, or 10*01826a49SYabin Cui# (at your option) any later version. 11*01826a49SYabin Cui 12*01826a49SYabin Cui# This program is distributed in the hope that it will be useful, 13*01826a49SYabin Cui# but WITHOUT ANY WARRANTY; without even the implied warranty of 14*01826a49SYabin Cui# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15*01826a49SYabin Cui# GNU General Public License for more details. 16*01826a49SYabin Cui 17*01826a49SYabin Cui# You should have received a copy of the GNU General Public License 18*01826a49SYabin Cui# along with this program. If not, see <https://www.gnu.org/licenses/>. 19*01826a49SYabin Cui# limit so don't run it by default. 20*01826a49SYabin Cui 21*01826a49SYabin Cui. "${srcdir=.}/init.sh"; path_prepend_ . 22*01826a49SYabin Cui 23*01826a49SYabin Cuifor input in \ 24*01826a49SYabin Cui '\037\036\000\000\037\213\010\000\000\000\000\000\002\003\036\000\000\000\002\003\037\213\010\000\000\000\000\000\002\003\355\301\001\015\000\000\000\302\240\037\000\302\240\037\213\010\000\000\000\000\000\002\003\355\301' \ 25*01826a49SYabin Cui '\037\213\010\000\000\000\000\000\002\003\355\301\001\015\000\000\000\302\240\076\366\017\370\036\016\030\000\000\000\000\000\000\000\000\000\034\010\105\140\104\025\020\047\000\000\037\036\016\030\000\000\000'; do 26*01826a49SYabin Cui 27*01826a49SYabin Cui printf "$input" >in || framework_failure_ 28*01826a49SYabin Cui 29*01826a49SYabin Cui if gzip -d <in >out 2>err; then 30*01826a49SYabin Cui fail=1 31*01826a49SYabin Cui else 32*01826a49SYabin Cui fail=0 33*01826a49SYabin Cui fi 34*01826a49SYabin Cuidone 35*01826a49SYabin Cui 36*01826a49SYabin CuiExit $fail 37