From 1758de1be1a8ed48f0dff7d30efb38ee65f6111c Mon Sep 17 00:00:00 2001 From: zhangyan <103986797+messigogogo@users.noreply.github.com> Date: Sun, 18 Jun 2023 21:40:02 +0800 Subject: [PATCH] =?UTF-8?q?testcase=20=E4=BF=AE=E6=94=B9=20(#7688)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/utest/testcases/posix/stdlib_h/functions/strtol_tc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/utest/testcases/posix/stdlib_h/functions/strtol_tc.c b/examples/utest/testcases/posix/stdlib_h/functions/strtol_tc.c index 5a97aff3ce..747ed5666a 100644 --- a/examples/utest/testcases/posix/stdlib_h/functions/strtol_tc.c +++ b/examples/utest/testcases/posix/stdlib_h/functions/strtol_tc.c @@ -97,13 +97,13 @@ int strtol_entry(void) TEST(l, strtol(s = "0F5F", &c, 16), 0x0f5fL, "%ld != %ld"); TEST(l, strtol(s = "0xz", &c, 16), 0L, "%ld != %ld"); - TEST3(i, c - s, 1, "wrong final position %ld != %ld"); + TEST2(i, c - s, 1, "wrong final position %ld != %ld"); TEST(l, strtol(s = "0x1234", &c, 16), 0x1234, "%ld != %ld"); TEST2(i, c - s, 6, "wrong final position %ld != %ld"); c = NULL; - TEST3(l, strtol(s = "123", &c, 37), 0, "%ld != %ld"); + TEST3(l, strtol(s = "123", &c, 36), 0, "%ld != %ld"); TEST3(i, c - s, 0, "wrong final position %d != %d"); TEST(l, strtol(s = " 15437", &c, 8), 015437, "%ld != %ld");