cosmopolitan/third_party/make/tests/scripts/variables/CURDIR
2021-10-26 14:58:05 -07:00

16 lines
313 B
Perl

# -*-perl-*-
$description = "This tests the CURDIR variable.";
$details = "Echo CURDIR both with and without -C. Also ensure overrides work.";
# TEST #1
# -------
run_make_test(q!
all: ; @echo $(CURDIR)
!,
'', "#PWD#\n");
1;