mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-28 15:57:48 +00:00
9d58570c77
* tests/scripts/misc/utf8: Test variable names with characters >127. Fix suggested by Robert Bogomip <bob.bogo@milohedge.com>
14 lines
322 B
Perl
14 lines
322 B
Perl
# -*-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;
|