make/tests/scripts/misc/utf8
Paul Smith 9d58570c77 * makeint.h (STOP_SET): [SV 40371] Cast to unsigned char.
* tests/scripts/misc/utf8: Test variable names with characters >127.
Fix suggested by Robert Bogomip <bob.bogo@milohedge.com>
2013-10-27 17:43:21 -04:00

15 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;