summaryrefslogtreecommitdiff
path: root/tests/scripts/misc/utf8
blob: 2adcd071d6d15007504fec34c10f951fdecd45c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#                                                                    -*-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;