#!/bin/sh
#
# test -a option
#
set +e
mp3guessenc -a debian/flush.mp3 > a.tmp
set -e
#
grep -F 291 a.tmp
#
rm a.tmp

