login: SIGINT should interrupt motd printing
[unleashed.git] / bin / bmake / unit-tests / export-all.mk
blob200412f3b90a476d6c42c422bf2d02ec397f6bf6
1 # $Id: export-all.mk,v 1.1.1.2 2015/04/10 20:43:38 sjg Exp $
3 UT_OK=good
4 UT_F=fine
6 # the old way to do :tA
7 M_tAbad = C,.*,cd & \&\& 'pwd',:sh
8 # the new
9 M_tA = tA
11 here := ${.PARSEDIR}
13 # this will cause trouble (recursing if we let it)
14 UT_BADDIR = ${${here}/../${here:T}:L:${M_tAbad}:T}
15 # this will be ok
16 UT_OKDIR = ${${here}/../${here:T}:L:${M_tA}:T}
18 .export
20 .include "export.mk"
22 UT_TEST=export-all
23 UT_ALL=even this gets exported