mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 13:39:25 -04:00
14 lines
331 B
Bash
Executable File
14 lines
331 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# $builddir is always .
|
|
builddir=.
|
|
# $srcdir will be set to the correct directory when this script is called from
|
|
# the Makefiles generated by Automake.
|
|
|
|
# Create output directory.
|
|
mkdir -p $builddir/data
|
|
|
|
# Test executable expects two arguments: test_input_dir and test_output_dir.
|
|
./tests $srcdir/data $builddir/data
|
|
|