Description: Fix the test run, Debian has zcat, not gzcat Author: Christoph Biedl Bug: https://bitbucket.org/ripencc/bgpdump/issues/34/ Last-Update: 2016-07-18 --- a/test.sh +++ b/test.sh @@ -9,7 +9,7 @@ echo -n " testing $mrt..." OUT=$mrt.bgp.gz ./bgpdump -vm test_data/$mrt > test_out/$OUT - gzcat test_expect/$OUT | diff -q test_out/$OUT - + zcat test_expect/$OUT | diff -q test_out/$OUT - if [ $? == 0 ]; then echo "success" else