From f6a9846d0eabda0d42b1f6481d063754ea9f17c9 Mon Sep 17 00:00:00 2001 From: Daniel Bovensiepen Date: Mon, 10 Sep 2012 23:25:50 +0800 Subject: Fix writing errors in Makefiles --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/Makefile b/test/Makefile index 921442b28..18bc79b5a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,5 +1,5 @@ -# makefile discription. -# basic build file for mruby library (Ruby part) +# Makefile description. +# basic build file for the mruby testing environment mrbtest # project-specific macros # extension of the executable-file is modifiable(.exe .out ...) -- cgit v1.2.3 From cef52c73c3b60da37e16f02dd0556941f6fea598 Mon Sep 17 00:00:00 2001 From: Daniel Bovensiepen Date: Mon, 10 Sep 2012 23:33:22 +0800 Subject: Add Test Case for Issue #460 --- test/t/string.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test') diff --git a/test/t/string.rb b/test/t/string.rb index 3338e4318..27af38a4c 100644 --- a/test/t/string.rb +++ b/test/t/string.rb @@ -335,3 +335,7 @@ assert('String interpolation (mrb_str_concat for shared strings)') do "#{a}:" == "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA:" end +assert('Check the usage of a NUL character') do + "qqq\0ppp" +end + -- cgit v1.2.3