summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2013-10-26 00:10:17 -0400
committerYury Usishchev <y.usishchev@samsung.com>2015-02-11 18:13:37 +0300
commit77005f0338e3c1ab8ab58100f705c03b8966a320 (patch)
tree1996e80d9a2bb6d65f8d2c8183b808d98ebf6081
parent2b89b509eb6ed83fd15f901eae1c311b2a4bff52 (diff)
downloadmake-submit/tizen_3.0.2014.q4_common/20150226.000000.tar.gz
make-submit/tizen_3.0.2014.q4_common/20150226.000000.tar.bz2
make-submit/tizen_3.0.2014.q4_common/20150226.000000.zip
* tests/scripts/misc/utf8: Test variable names with characters >127. Fix suggested by Robert Bogomip <bob.bogo@milohedge.com> Change-Id: I93e2b24562d2bed3a8d60f8876d1def3a1f7b012 Signed-off-by: Yury Usishchev <y.usishchev@samsung.com>
-rw-r--r--makeint.h2
-rw-r--r--tests/scripts/misc/utf814
2 files changed, 15 insertions, 1 deletions
diff --git a/makeint.h b/makeint.h
index 3e22296..7677af0 100644
--- a/makeint.h
+++ b/makeint.h
@@ -409,7 +409,7 @@ extern int unixy_shell;
# define MAP_VMSCOMMA 0x0000
#endif
-#define STOP_SET(_v,_m) ANY_SET (stopchar_map[(int)(_v)],(_m))
+#define STOP_SET(_v,_m) ANY_SET (stopchar_map[(unsigned char)(_v)],(_m))
#if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT) && defined(HAVE_SETRLIMIT)
# define SET_STACK_SIZE
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;