mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-01-01 10:04:49 +00:00
15 lines
322 B
Text
15 lines
322 B
Text
|
# -*-perl-*-
|
||
|
$description = "Test utf8 handling.";
|
||
|
|
||
|
$details = "";
|
||
|
|
||
|
# Variable names containing UTF8 characters
|
||
|
run_make_test("
|
||
|
\xe2\x96\xaa := hello
|
||
|
\$(info \$(\xe2\x96\xaa))
|
||
|
all:
|
||
|
",
|
||
|
'', "hello\n#MAKE#: Nothing to be done for 'all'.");
|
||
|
|
||
|
1;
|