mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -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'.
23 lines
330 B
Makefile
23 lines
330 B
Makefile
# $FreeBSD$
|
|
#
|
|
# A unsorted set of macro expansions. This should be sorted out.
|
|
#
|
|
A = 0
|
|
AV = 1
|
|
test1:
|
|
@echo $A
|
|
@echo ${AV}
|
|
@echo ${A}
|
|
@# The following are soo broken why no syntax error?
|
|
@echo $(
|
|
@echo $)
|
|
@echo ${
|
|
@echo ${A
|
|
@echo ${A)
|
|
@echo ${A){
|
|
@echo ${AV
|
|
@echo ${AV)
|
|
@echo ${AV){
|
|
@echo ${AV{
|
|
@echo ${A{
|
|
@echo $}
|