1275970Scy#!/bin/sh
2275970Scy
3275970Scy# $builddir is always .
4275970Scybuilddir=.
5275970Scy# $srcdir will be set to the correct directory when this script is called from
6275970Scy# the Makefiles generated by Automake.
7275970Scy
8275970Scy# Create output directory.
9275970Scymkdir -p $builddir/data
10275970Scy
11275970Scy# Test executable expects two arguments: test_input_dir and test_output_dir.
12275970Scy./tests $srcdir/data $builddir/data
13275970Scy
14