#!/bin/bash
# Test split/join of a file
# $1 = name of file

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

../hydra -o ./$1 7 7 $srcdir/$1

../hydra -j ./$1.00? | diff -q - $srcdir/$1

RC=$?

rm -f ./$1.00?

exit $RC
