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.
18 lines
566 B
Plaintext
18 lines
566 B
Plaintext
dnl $FreeBSD$
|
|
dnl $OpenBSD: src/regress/usr.bin/m4/redef.m4,v 1.2 2001/09/27 22:40:58 espie Exp $
|
|
dnl check all properties of builtin are passed on, including args behavior
|
|
define(`mybuiltin',defn(`builtin'))dnl
|
|
builtin mybuiltin
|
|
define(`mydefine',defn(`define'))dnl
|
|
mydefine(`mydefn',defn(`defn'))dnl
|
|
mydefine(`myundefine',mydefn(`undefine'))dnl
|
|
myundefine(`defn')dnl
|
|
myundefine(`define')dnl
|
|
myundefine(`undefine')dnl
|
|
mydefine(`mydef2',mydefn(`mydefine'))dnl
|
|
mydefine(`mydef', mydefn(`define'))dnl
|
|
myundefine(`mydefine')dnl
|
|
mydef2(`A',`B')dnl
|
|
mydef(`C',`D')dnl
|
|
A C
|