#!/bin/bash source "$BP_DIR/bp_test/lib/test.sh" run "$bp -I $in -o $tmp -x" assert_no_diff $tmp $out.1 clean run "$bp -I $in -e base_33 -o $tmp -x" assert_no_diff $tmp $out.1 clean run "$bp -I $in -e base_64 -o $tmp -x" assert_no_diff $tmp $out.2 clean run "$bp -I $in -Z gzip -o $tmp.gz -x" gunzip $tmp.gz assert_no_diff $tmp $out.1 clean run "$bp -I $in -Z bzip2 -o $tmp.bz2 -x" bunzip2 $tmp.bz2 assert_no_diff $tmp $out.1 clean