fix unittests

Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
This commit is contained in:
Vitalii Koshura 2024-09-10 03:43:10 +02:00
parent bd3b2a97e6
commit 1ad881d97d
No known key found for this signature in database
GPG Key ID: CE0DB1726070A5A3
1 changed files with 5 additions and 4 deletions

View File

@ -297,11 +297,12 @@ namespace test_str_util {
TEST_F(test_str_util, lf_terminate) {
char *buf;
buf = (char*)malloc(256);
strncpy(buf, "no\nlf ending", sizeof(buf));
const size_t buf_size = 256;
buf = (char*)malloc(buf_size);
strncpy(buf, "no\nlf ending", buf_size);
buf = lf_terminate(buf);
EXPECT_STREQ(buf, "no\nlf ending\n");
strncpy(buf, "lf\n ending\n", sizeof(buf));
strncpy(buf, "lf\n ending\n", buf_size);
buf = lf_terminate(buf);
EXPECT_STREQ(buf, "lf\n ending\n");
}
@ -390,7 +391,7 @@ namespace test_str_util {
EXPECT_STREQ(buf, "blah");
EXPECT_EQ(path_to_filename("hellokeith", buf), 0);
EXPECT_STREQ(buf, "hellokeith");
strncpy(buf, "", sizeof(buf));
strncpy(buf, "", 2);
EXPECT_EQ(path_to_filename("/home/blah/", buf), -2);
EXPECT_STREQ(buf, "");
EXPECT_EQ(path_to_filename("", buf), -1);