From d2a06893015a9e2845f9278af9e2ba15f9b37d9d Mon Sep 17 00:00:00 2001 From: Jan Breuer <jan.breuer@jaybee.cz> Date: 周一, 31 8月 2015 17:35:32 +0800 Subject: [PATCH] Fix #44: incorrect handling of empty string --- libscpi/test/test_parser.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/libscpi/test/test_parser.c b/libscpi/test/test_parser.c index 5365f84..5306caf 100644 --- a/libscpi/test/test_parser.c +++ b/libscpi/test/test_parser.c @@ -438,6 +438,9 @@ TEST_ParamCopyText("\'a\"c\'", TRUE, "a\"c", 3, TRUE, 0); TEST_ParamCopyText("\"a\"\"c\"", TRUE, "a\"c", 3, TRUE, 0); TEST_ParamCopyText("\"a\'c\"", TRUE, "a\'c", 3, TRUE, 0); + TEST_ParamCopyText("\"\"", TRUE, "", 0, TRUE, 0); + TEST_ParamCopyText("", FALSE, "", 0, FALSE, 0); + TEST_ParamCopyText("\"\"", FALSE, "", 0, TRUE, 0); } -- Gitblit v1.9.1