1*8585484eSchristos#!/bin/sh 2*8585484eSchristos 3*8585484eSchristos# $builddir is always . 4*8585484eSchristosbuilddir=. 5*8585484eSchristos# $srcdir will be set to the correct directory when this script is called from 6*8585484eSchristos# the Makefiles generated by Automake. 7*8585484eSchristos 8*8585484eSchristos# Create output directory. 9*8585484eSchristosmkdir -p $builddir/data 10*8585484eSchristos 11*8585484eSchristos# Test executable expects two arguments: test_input_dir and test_output_dir. 12*8585484eSchristos./tests $srcdir/data $builddir/data 13*8585484eSchristos 14