#!/bin/bash
# Test split/join of a file using -e option

# Make sure an aborted attempt at this test doesn't mess things up
rm -f ./mediumtestfile.00?

../hydra -e -o ./mediumtestfile 7 7 $srcdir/mediumtestfile

../hydra -j ./mediumtestfile.00? | diff -q - $srcdir/mediumtestfile

RC=$?

rm -f ./mediumtestfile.00?

exit $RC
