mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
so that make(1) will run in an almost clean environment and enhance the description of the test infrastructure. Add the ability to have multiple tests carried out per test script. Give some tests more meaningful names. Fix the usage message from the test scripts. Make it possible to pass several commands to the test scripts like: 'sh test.t setup run compare clean'.
18 lines
413 B
Makefile
18 lines
413 B
Makefile
#
|
|
# In compat mode (the default without -j) a line that contains no shell
|
|
# meta characters and no shell builtins is not passed to the shell but
|
|
# executed directly. In our example the ls line without meta characters
|
|
# will really execute ls, while the line with meta characters will execute
|
|
# our special shell.
|
|
#
|
|
# $FreeBSD$
|
|
|
|
.SHELL: path="${.OBJDIR}/sh"
|
|
|
|
.PHONY: meta no-meta
|
|
|
|
meta:
|
|
@ls *
|
|
|
|
no-meta:
|
|
@ls -d .
|