1e4589b921
- r263220 Migrate tools/regression/sbin/ to the new tests layout. - r263222 Add Makefile missed in r263220. - r263226 Migrate tools/regression/{usr.bin/lastcomm,usr.sbin}/ to the new tests layout. - r263227 Migrate most of tools/regression/usr.bin/ to the new tests layout. - r263345 Expand tabs that sneaked in into spaces. - r263346 Migrate tools/regression/usr.bin/make/ to the new tests layout. - r263348 Add Makefiles missed in r263346. - r263351 Migrate tools/regression/usr.bin/pkill/ to the new tests layout. - r263388 Mark multi_test as requiring /usr/share/dict/words. - r263814 Fix path to the run.pl script to let these tests run. - r264742 Prevent building tests when bootstrapping make. This is 'make tinderbox' clean.
22 lines
976 B
Bash
22 lines
976 B
Bash
# $FreeBSD$
|
|
|
|
echo 1..13
|
|
|
|
REGRESSION_START($1)
|
|
|
|
REGRESSION_TEST(`normal', `xargs echo The <${SRCDIR}/regress.in')
|
|
REGRESSION_TEST(`I', `xargs -I% echo The % % % %% % % <${SRCDIR}/regress.in')
|
|
REGRESSION_TEST(`J', `xargs -J% echo The % again. <${SRCDIR}/regress.in')
|
|
REGRESSION_TEST(`L', `xargs -L3 echo <${SRCDIR}/regress.in')
|
|
REGRESSION_TEST(`R', `xargs -I% -R1 echo The % % % %% % % <${SRCDIR}/regress.in')
|
|
REGRESSION_TEST(`n1', `xargs -n1 echo <${SRCDIR}/regress.in')
|
|
REGRESSION_TEST(`n2', `xargs -n2 echo <${SRCDIR}/regress.in')
|
|
REGRESSION_TEST(`n3', `xargs -n3 echo <${SRCDIR}/regress.in')
|
|
REGRESSION_TEST(`0', `xargs -0 -n1 echo <${SRCDIR}/regress.0.in')
|
|
REGRESSION_TEST(`0I', `xargs -0 -I% echo The % %% % <${SRCDIR}/regress.0.in')
|
|
REGRESSION_TEST(`0J', `xargs -0 -J% echo The % again. <${SRCDIR}/regress.0.in')
|
|
REGRESSION_TEST(`0L', `xargs -0 -L2 echo <${SRCDIR}/regress.0.in')
|
|
REGRESSION_TEST(`quotes', `xargs -n1 echo <${SRCDIR}/regress.quotes.in')
|
|
|
|
REGRESSION_END()
|