diff --git a/testsuites/unittest/extended/signal/smoke/It_ipc_pipe_004.cpp b/testsuites/unittest/extended/signal/smoke/It_ipc_pipe_004.cpp index 7dd997cbccead755be74f0eb0965ad1d80cdd2eb..3230502612e5f52a5087359c7847c8ebdcd10e7a 100644 --- a/testsuites/unittest/extended/signal/smoke/It_ipc_pipe_004.cpp +++ b/testsuites/unittest/extended/signal/smoke/It_ipc_pipe_004.cpp @@ -53,7 +53,7 @@ static UINT32 TestCase(VOID) char sentence1[15] = "Hello World"; char a[4] = {0}; retValue = sprintf_s(a, sizeof(a), "%d", i); - ICUNIT_ASSERT_NOT_EQUAL(retValue, NULL, retValue); + ICUNIT_ASSERT_NOT_EQUAL(retValue, 0, retValue); retValue = strcat_s(sentence1, sizeof(sentence1), a); ICUNIT_ASSERT_EQUAL(retValue, 0, retValue); ret = write(*writeFd, sentence1, strlen(sentence1) + 1); diff --git a/testsuites/unittest/libc/io/full/IO_test_confstr_001.cpp b/testsuites/unittest/libc/io/full/IO_test_confstr_001.cpp index ee364b4c33d793ad06a6db7883ca237564837225..b63c3ba3ee5ba3e3563f51cad063872d00dbbe0f 100644 --- a/testsuites/unittest/libc/io/full/IO_test_confstr_001.cpp +++ b/testsuites/unittest/libc/io/full/IO_test_confstr_001.cpp @@ -44,7 +44,7 @@ static UINT32 testcase(VOID) return LOS_NOK; } confstr(_CS_PATH, pathbuf, n); - ICUNIT_ASSERT_NOT_EQUAL_NULL(pathbuf, NULL, -1); + ICUNIT_ASSERT_NOT_EQUAL(pathbuf, NULL, -1); free(pathbuf); pathbuf = NULL; @@ -57,7 +57,7 @@ static UINT32 testcase(VOID) return LOS_NOK; } confstr(_CS_GNU_LIBPTHREAD_VERSION, gun_libpthread_version_buf, n); - ICUNIT_ASSERT_NOT_EQUAL_NULL(gun_libpthread_version_buf, NULL, -1); + ICUNIT_ASSERT_NOT_EQUAL(gun_libpthread_version_buf, NULL, -1); free(gun_libpthread_version_buf); gun_libpthread_version_buf = NULL; @@ -70,7 +70,7 @@ static UINT32 testcase(VOID) return LOS_NOK; } confstr(_CS_GNU_LIBC_VERSION, gun_libc_version_buf, n); - ICUNIT_ASSERT_NOT_EQUAL_NULL(gun_libc_version_buf, NULL, -1); + ICUNIT_ASSERT_NOT_EQUAL(gun_libc_version_buf, NULL, -1); free(gun_libc_version_buf); gun_libc_version_buf = NULL; diff --git a/testsuites/unittest/libc/io/full/IO_test_locale_001.cpp b/testsuites/unittest/libc/io/full/IO_test_locale_001.cpp index f2bbf1c655f5a073cfecd89ffe31a92d09c126d7..a6d5b825474a2a6ccc2d7da12a6493a4bf0cb646 100644 --- a/testsuites/unittest/libc/io/full/IO_test_locale_001.cpp +++ b/testsuites/unittest/libc/io/full/IO_test_locale_001.cpp @@ -47,17 +47,17 @@ static UINT32 testcase(VOID) printf("Locale is: %s\n", setlocale(LC_TIME, "en_US.UTF-8")); strftime(buffer, 80, "%c", timer); printf("Date is: %s\n", buffer); - ICUNIT_ASSERT_NOT_EQUAL_NULL(buffer, NULL, -1); + ICUNIT_ASSERT_NOT_EQUAL(buffer, NULL, -1); printf("Locale is: %s\n", setlocale(LC_TIME, "zh_CN.UTF-8")); strftime(buffer, 80, "%c", timer); printf("Date is: %s\n", buffer); - ICUNIT_ASSERT_NOT_EQUAL_NULL(buffer, NULL, -1); + ICUNIT_ASSERT_NOT_EQUAL(buffer, NULL, -1); printf("Locale is: %s\n", setlocale(LC_TIME, "")); strftime(buffer, 80, "%c", timer); printf("Date is: %s\n", buffer); - ICUNIT_ASSERT_NOT_EQUAL_NULL(buffer, NULL, -1); + ICUNIT_ASSERT_NOT_EQUAL(buffer, NULL, -1); setlocale(LC_ALL, "C"); return LOS_OK; diff --git a/testsuites/unittest/libc/io/full/IO_test_locale_002.cpp b/testsuites/unittest/libc/io/full/IO_test_locale_002.cpp index daaca4c740f780e4c4ea011d288e1152f6625368..a7e1fd6bf883827e426bf7a9b3c2285dbbc64e75 100644 --- a/testsuites/unittest/libc/io/full/IO_test_locale_002.cpp +++ b/testsuites/unittest/libc/io/full/IO_test_locale_002.cpp @@ -47,17 +47,17 @@ static UINT32 testcase(VOID) printf("Locale is: %s\n", setlocale(LC_TIME, "en_US.UTF-8")); (void)strftime(buffer, sizeof(buffer), "%c", timer); printf("Date is: %s\n", buffer); - ICUNIT_ASSERT_NOT_EQUAL_NULL(buffer, NULL, -1); + ICUNIT_ASSERT_NOT_EQUAL(buffer, NULL, -1); printf("Locale is: %s\n", setlocale(LC_TIME, "zh_CN.UTF-8")); (void)strftime(buffer, sizeof(buffer), "%c", timer); printf("Date is: %s\n", buffer); - ICUNIT_ASSERT_NOT_EQUAL_NULL(buffer, NULL, -1); + ICUNIT_ASSERT_NOT_EQUAL(buffer, NULL, -1); printf("Locale is: %s\n", setlocale(LC_TIME, "")); (void)strftime(buffer, sizeof(buffer), "%c", timer); printf("Date is: %s\n", buffer); - ICUNIT_ASSERT_NOT_EQUAL_NULL(buffer, NULL, -1); + ICUNIT_ASSERT_NOT_EQUAL(buffer, NULL, -1); setlocale(LC_ALL, "C"); return LOS_OK; diff --git a/testsuites/unittest/libc/io/full/IO_test_nl_langinfo_001.cpp b/testsuites/unittest/libc/io/full/IO_test_nl_langinfo_001.cpp index b33fb2ffaa720e34e71fa0274fc73dd83e62542a..f843a728a2e24ca6aed05820798caa7fff9f2580 100644 --- a/testsuites/unittest/libc/io/full/IO_test_nl_langinfo_001.cpp +++ b/testsuites/unittest/libc/io/full/IO_test_nl_langinfo_001.cpp @@ -89,7 +89,7 @@ static UINT32 testcase(VOID) printf("%s\n", nl_langinfo(CRNCYSTR)); char *string = nl_langinfo(CRNCYSTR); - ICUNIT_ASSERT_NOT_EQUAL_NULL(string, NULL, string); + ICUNIT_ASSERT_NOT_EQUAL(string, NULL, string); setlocale(LC_ALL, "C"); return LOS_OK; diff --git a/testsuites/unittest/libc/io/full/IO_test_nl_langinfo_l_001.cpp b/testsuites/unittest/libc/io/full/IO_test_nl_langinfo_l_001.cpp index a7c3571088e54c28b942240e19686ccf08676354..f954de3cb08a0542686825b7972d0755ef871757 100644 --- a/testsuites/unittest/libc/io/full/IO_test_nl_langinfo_l_001.cpp +++ b/testsuites/unittest/libc/io/full/IO_test_nl_langinfo_l_001.cpp @@ -57,7 +57,7 @@ static UINT32 testcase(VOID) { printf("%s\n", nl_langinfo_l(RADIXCHAR, reinterpret_cast(const_cast("zh_CN.UTF-8")))); char *string = nl_langinfo_l(CRNCYSTR, reinterpret_cast(const_cast("zh_CN.UTF-8"))); - ICUNIT_ASSERT_NOT_EQUAL_NULL(string, NULL, string); + ICUNIT_ASSERT_NOT_EQUAL(string, NULL, string); setlocale(LC_ALL, "C"); return LOS_OK; diff --git a/testsuites/unittest/libc/io/full/It_stdio_hasmntopt_001.cpp b/testsuites/unittest/libc/io/full/It_stdio_hasmntopt_001.cpp index 904b58534e829eec34d2f2b8da97d6febe54c028..a0d605b68f86c05c07e333036fa3fcf6edb5ffb3 100644 --- a/testsuites/unittest/libc/io/full/It_stdio_hasmntopt_001.cpp +++ b/testsuites/unittest/libc/io/full/It_stdio_hasmntopt_001.cpp @@ -77,7 +77,7 @@ static UINT32 testcase(VOID) if (mnt && !(feof(fp) || ferror(fp))) { ret = hasmntopt(mnt, opt); printf("hasmntopt=%s\n", ret); - ICUNIT_ASSERT_NOT_EQUAL_NULL(ret, NULL, -1); + ICUNIT_ASSERT_NOT_EQUAL(ret, NULL, -1); mnt = getmntent(fp); } diff --git a/testsuites/unittest/process/basic/process/full/process_test_049.cpp b/testsuites/unittest/process/basic/process/full/process_test_049.cpp index 740352ee7ea6fc3ed5f87c6a90ef0ba2ba86e239..70d38ea38ec193e1f2f0387144c3d353f94a05db 100644 --- a/testsuites/unittest/process/basic/process/full/process_test_049.cpp +++ b/testsuites/unittest/process/basic/process/full/process_test_049.cpp @@ -45,11 +45,11 @@ static int TestThread(void *arg) int ret = 0; pthread_t gTh; ret = pthread_create(&gTh, NULL, PthreadTest115, NULL); - ICUNIT_ASSERT_EQUAL_NULL(ret, 0, ret); + ICUNIT_ASSERT_EQUAL(ret, 0, ret); ret = pthread_join(gTh, NULL); - ICUNIT_ASSERT_EQUAL_NULL(ret, 0, ret); - ICUNIT_ASSERT_EQUAL_NULL(g_usetTestCount, 1, g_usetTestCount); + ICUNIT_ASSERT_EQUAL(ret, 0, ret); + ICUNIT_ASSERT_EQUAL(g_usetTestCount, 1, g_usetTestCount); *g_shmptr = 100; // 100, set shared num. @@ -66,11 +66,11 @@ static int TestThread(void *arg) ret = waitpid(pid, NULL, 0); printf("waitpid ret : %d errno : %d pid : %d getpid : %d\n", ret, errno, pid, getpid()); - ICUNIT_ASSERT_EQUAL_NULL(ret, pid, ret); + ICUNIT_ASSERT_EQUAL(ret, pid, ret); *g_shmptr = data; EXIT: - return NULL; + return 0; } // This testcase us used for undefination of LOSCFG_USER_TEST_SMP @@ -100,7 +100,7 @@ static int Testcase(void) ICUNIT_GOTO_EQUAL(*g_shmptr, arg, *g_shmptr, EXIT2); - ret = waitpid(pid, &status, NULL); + ret = waitpid(pid, &status, 0); ICUNIT_GOTO_EQUAL(ret, pid, ret, EXIT2); EXIT2: diff --git a/testsuites/unittest/process/basic/process/full/process_test_050.cpp b/testsuites/unittest/process/basic/process/full/process_test_050.cpp index 720cde9c0f4f1965f45b0a08bb2d9444dd6e41ed..51da4d6ebc15f34c364ec43286d4a3bc4043ff44 100644 --- a/testsuites/unittest/process/basic/process/full/process_test_050.cpp +++ b/testsuites/unittest/process/basic/process/full/process_test_050.cpp @@ -39,10 +39,10 @@ static int TestThread(void *arg) printf("TestThread ppid : %d g_ppid : %d\n", ppid, g_ppid); - ICUNIT_ASSERT_EQUAL_NULL(ppid, g_ppid, g_ppid); + ICUNIT_ASSERT_EQUAL(ppid, g_ppid, g_ppid); *g_shmptr = 100; // 100, set shared num. - return NULL; + return 0; } // This testcase us used for undefination of LOSCFG_USER_TEST_SMP @@ -55,7 +55,7 @@ static int Testcase(void) int ret; int count; pid_t pid; - + int shmid = shmget(IPC_PRIVATE, sizeof(int), IPC_CREAT | 0600); // 0600 config of shmget ICUNIT_ASSERT_NOT_EQUAL(shmid, -1, shmid); @@ -73,7 +73,7 @@ static int Testcase(void) stackTop = reinterpret_cast(reinterpret_cast(stack) + arg); pid = clone(TestThread, (void *)stackTop, CLONE_PARENT, &arg); - ret = waitpid(pid, &status, NULL); + ret = waitpid(pid, &status, 0); ICUNIT_GOTO_EQUAL(ret, -1, ret, EXIT2); count = 0; diff --git a/testsuites/unittest/process/basic/process/full/process_test_051.cpp b/testsuites/unittest/process/basic/process/full/process_test_051.cpp index 2e29096adec7ab868ac034fdee9bd30a0cc2bd4e..e46eacf69a23cd2b19f06d4f739a5453dbb29f6a 100644 --- a/testsuites/unittest/process/basic/process/full/process_test_051.cpp +++ b/testsuites/unittest/process/basic/process/full/process_test_051.cpp @@ -41,7 +41,7 @@ static int TestThread(void *arg) printf("TestThread ppid : %d g_ppid : %d\n", ppid, g_ppid); - ICUNIT_ASSERT_EQUAL_NULL(ppid, g_ppid, g_ppid); + ICUNIT_ASSERT_EQUAL(ppid, g_ppid, g_ppid); *g_shmptr = 1000; // 1000, set shared num. @@ -54,11 +54,11 @@ static int TestThread(void *arg) } ret = waitpid(pid, NULL, 0); - ICUNIT_ASSERT_EQUAL_NULL(ret, pid, ret); + ICUNIT_ASSERT_EQUAL(ret, pid, ret); *g_shmptr = 100; // 100, set shared num. EXIT: - return NULL; + return 0; } // This testcase us used for undefination of LOSCFG_USER_TEST_SMP @@ -70,7 +70,7 @@ static int Testcase(void) void *stack; char *stackTop; int ret; - + int shmid = shmget(IPC_PRIVATE, sizeof(int), IPC_CREAT | 0600); // 0600 config of shmget ICUNIT_ASSERT_NOT_EQUAL(shmid, -1, shmid); @@ -90,7 +90,7 @@ static int Testcase(void) ICUNIT_GOTO_EQUAL(*g_shmptr, 100, *g_shmptr, EXIT2); // 100, assert g_shmptr equal to this. - ret = waitpid(pid, &status, NULL); + ret = waitpid(pid, &status, 0); ICUNIT_GOTO_EQUAL(ret, -1, ret, EXIT2); EXIT2: diff --git a/testsuites/unittest/process/basic/process/smoke/process_test_010.cpp b/testsuites/unittest/process/basic/process/smoke/process_test_010.cpp index d8fc46e552fef53d9ba56f1fa87e09b69b7a63ad..7c5c4843f0c158a50509ec8131fe18c3a9c94ca1 100644 --- a/testsuites/unittest/process/basic/process/smoke/process_test_010.cpp +++ b/testsuites/unittest/process/basic/process/smoke/process_test_010.cpp @@ -105,7 +105,7 @@ static int Testcase(void) exit(Child()); } else if (ret > 0) { pid = ret; - ret = waitpid(pid, &status, NULL); + ret = waitpid(pid, &status, 0); status = WEXITSTATUS(status); ICUNIT_ASSERT_EQUAL(ret, pid, ret); ICUNIT_ASSERT_EQUAL(status, 0, status); diff --git a/testsuites/unittest/process/basic/pthread/smoke/pthread_test_012.cpp b/testsuites/unittest/process/basic/pthread/smoke/pthread_test_012.cpp index f89b31d43938a43a3e76db3c0571853a2be8aa65..f33e767282ddbc6808aff4c51fddae9100a36921 100644 --- a/testsuites/unittest/process/basic/pthread/smoke/pthread_test_012.cpp +++ b/testsuites/unittest/process/basic/pthread/smoke/pthread_test_012.cpp @@ -33,7 +33,7 @@ static int Testcase(void) { int ret; - ret = Syscall(SYS_set_thread_area, NULL, 0, 0, 0); + ret = Syscall(SYS_set_thread_area, 0x0, 0, 0, 0); ICUNIT_ASSERT_EQUAL(ret, EINVAL, ret); ret = Syscall(SYS_set_thread_area, 0x100, 0, 0, 0);