diff options
author | Paul Smith <psmith@gnu.org> | 2013-10-26 00:10:17 -0400 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-10-27 17:43:21 -0400 |
commit | 9d58570c77240fed53d1f88217877f8e778f4bb2 (patch) | |
tree | dde26bb0aa35ebc2f7790f434f0e94a93ee18577 /tests | |
parent | d49ab08ae027b241966b6ab9cc4514efefae829e (diff) | |
download | gunmake-9d58570c77240fed53d1f88217877f8e778f4bb2.tar.gz |
* 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>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/scripts/misc/utf8 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/scripts/misc/utf8 b/tests/scripts/misc/utf8 new file mode 100644 index 0000000..2adcd07 --- /dev/null +++ b/tests/scripts/misc/utf8 @@ -0,0 +1,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; |