make/tests/scripts/options/dash-e

16 lines
284 B
Text
Raw Normal View History

# -*-perl-*-
$description = "The following test creates a makefile to ...";
$details = "";
$ENV{GOOGLE} = 'boggle';
run_make_test(q!
GOOGLE = bazzle
all:; @echo "$(GOOGLE)"
!,
'-e', "boggle\n");
1;