summaryrefslogtreecommitdiff
path: root/tests/unit/core/test-string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/core/test-string.cpp')
-rw-r--r--tests/unit/core/test-string.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit/core/test-string.cpp b/tests/unit/core/test-string.cpp
index 19e7c89c4..a7bc807de 100644
--- a/tests/unit/core/test-string.cpp
+++ b/tests/unit/core/test-string.cpp
@@ -123,6 +123,8 @@ TEST(String, Duplicate)
POINTERS_EQUAL(NULL, string_strndup (NULL, 0));
+ POINTERS_EQUAL(NULL, string_strndup (str_test, -1));
+
str = string_strndup (str_test, 0);
CHECK(str);
CHECK(str != str_test);