提交 a40f8383 编写于 作者: Z zhushengle

fix: 内源代码检视问题修改

1.删除测试用例中的需求单号和问题单号
2.部分格式问题
3.使用非安全函数问题
Signed-off-by: Nzhushengle <zhushengle@huawei.com>
Change-Id: I348bd9730f584fd3ebeb6d4245fe4a84c0c90c7d
上级 87a7df48
......@@ -12,9 +12,10 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
This is the configuration file template for OpenHarmony OSS Audit Tool, please copy it to your project root dir and modify it refer to OpenHarmony/tools_oat/README.
<!--
This is the configuration file template for OpenHarmony OSS Audit Tool, please copy it to your project root dir and modify it refer to OpenHarmony/tools_oat/README.
-->
<configuration>
......
......@@ -48,6 +48,7 @@
#endif
int main(int argc, char * const *argv)
{
(void)argv;
int ret;
pid_t gid;
const char *shellPath = "/bin/mksh";
......
......@@ -70,11 +70,16 @@ static void LmsReallocTest(void)
printf("[LmsReallocTest] malloc addr:%p size:%d\n", buf, 64);
printf("[LmsReallocTest] read overflow & underflow error should be triggered, read range[-1,64]\n");
BufReadTest(buf, -1, 64);
buf = (char *)realloc(buf, 32);
printf("[LmsReallocTest] realloc addr:%p size:%d\n", buf, 32);
char *buf1 = (char *)realloc(buf, 32);
if (buf1 == NULL) {
free(buf);
return;
}
buf = NULL;
printf("[LmsReallocTest] realloc addr:%p size:%d\n", buf1, 32);
printf("[LmsReallocTest] read overflow & underflow error should be triggered, read range[-1,32]\n");
BufReadTest(buf, -1, 32);
free(buf);
BufReadTest(buf1, -1, 32);
free(buf1);
printf("\n-------- LmsReallocTest End --------\n");
}
......@@ -206,4 +211,4 @@ int main(int argc, char * const * argv)
LmsFreeTest();
free(tmp);
printf("\n############### Lms Test End ###############\n");
}
\ No newline at end of file
}
......@@ -108,11 +108,15 @@ static int DoShellExec(char **argv)
if (!cmdLine) {
return ret;
}
memset_s(cmdLine, len, 0, len);
errno_t ret1 = memset_s(cmdLine, len, 0, len);
if (ret1 != EOK) {
free(cmdLine);
return ret1;
}
for (j = 0; j < i; j++) {
strcat_s(cmdLine, len, argv[j]);
strcat_s(cmdLine, len, " ");
(void)strcat_s(cmdLine, len, argv[j]);
(void)strcat_s(cmdLine, len, " ");
}
cmdLine[len - 2] = '\0'; /* 2, (len - 2) is the end of cmdline buf */
......
......@@ -42,7 +42,7 @@ extern "C" {
#define TFTP_NULL_UINT32 ((u32_t)0xffffffffUL)
#define TFTP_NULL_INT32 -1
#define TFTP_NULL_INT32 (-1)
/** @cond liteos
* @defgroup TFTP_Interfaces
......
......@@ -44,7 +44,7 @@ BOOL IsCapPermit(UINT32 capIndex)
{
UINT32 capability = OsCurrProcessGet()->capability;
if (capIndex > CAPABILITY_MAX || capIndex < 0) {
PRINTK("%s,%d, get invalid capIndex %d\n", __FUNCTION__, __LINE__, capIndex);
PRINTK("%s,%d, get invalid capIndex %u\n", __FUNCTION__, __LINE__, capIndex);
return FALSE;
}
......
......@@ -76,7 +76,7 @@ STATIC VOID ShellCmdHwiInfoShow(OsIrqCpupCB *irqData, CPUP_INFO_S *hwiCpup1s,
}
CHAR *irqName = OsGetHwiFormName(i);
UINT32 index = (i * LOSCFG_KERNEL_CORE_NUM) + cpu;
PRINTK(" %10d:%5u%11u%11llu%10llu%6u.%-2u%8u.%-2u%7u.%-2u%7s %-12s\n", i, cpu, count, cycles, timeMax,
PRINTK(" %10u:%5u%11u%11llu%10llu%6u.%-2u%8u.%-2u%7u.%-2u%7s %-12s\n", i, cpu, count, cycles, timeMax,
hwiCpupAll[index].usage / CPUP_PRECISION_MULT, hwiCpupAll[index].usage % CPUP_PRECISION_MULT,
hwiCpup10s[index].usage / CPUP_PRECISION_MULT, hwiCpup10s[index].usage % CPUP_PRECISION_MULT,
hwiCpup1s[index].usage / CPUP_PRECISION_MULT, hwiCpup1s[index].usage % CPUP_PRECISION_MULT,
......
......@@ -46,7 +46,6 @@ int CheckRegion(const LosVmSpace *space, VADDR_T ptr, size_t len)
void *DupUserMem(const void *ptr, size_t len, int needCopy)
{
void *p = LOS_MemAlloc(OS_SYS_MEM_ADDR, len);
if (p == NULL) {
set_errno(ENOMEM);
return NULL;
......
......@@ -46,7 +46,6 @@ public:
* @tc.name: it_test_dynload_002
* @tc.desc: function for DynloadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(DynloadTest, ItTestDynload002, TestSize.Level0)
{
......@@ -57,7 +56,6 @@ HWTEST_F(DynloadTest, ItTestDynload002, TestSize.Level0)
* @tc.name: it_test_dynload_004
* @tc.desc: function for DynloadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(DynloadTest, ItTestDynload004, TestSize.Level0)
{
......
......@@ -46,7 +46,6 @@ public:
* @tc.name: ItTestExc005
* @tc.desc: function for ExcTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ExcTest, ItTestExc005, TestSize.Level0)
{
......@@ -57,7 +56,6 @@ HWTEST_F(ExcTest, ItTestExc005, TestSize.Level0)
* @tc.name: ItTestExc001
* @tc.desc: function for ExcTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ExcTest, ItTestExc001, TestSize.Level0)
{
......@@ -68,7 +66,6 @@ HWTEST_F(ExcTest, ItTestExc001, TestSize.Level0)
* @tc.name: ItTestExc002
* @tc.desc: function for ExcTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ExcTest, ItTestExc002, TestSize.Level0)
{
......@@ -79,7 +76,6 @@ HWTEST_F(ExcTest, ItTestExc002, TestSize.Level0)
* @tc.name: ItTestExc003
* @tc.desc: function for ExcTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ExcTest, ItTestExc003, TestSize.Level0)
{
......@@ -90,7 +86,6 @@ HWTEST_F(ExcTest, ItTestExc003, TestSize.Level0)
* @tc.name: ItTestExc004
* @tc.desc: function for ExcTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ExcTest, ItTestExc004, TestSize.Level0)
{
......
......@@ -46,7 +46,6 @@ public:
* @tc.name: it_test_shm_001
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm001, TestSize.Level0)
{
......@@ -57,7 +56,6 @@ HWTEST_F(MemShmTest, ItTestShm001, TestSize.Level0)
* @tc.name: it_test_shm_002
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm002, TestSize.Level0)
{
......@@ -68,7 +66,6 @@ HWTEST_F(MemShmTest, ItTestShm002, TestSize.Level0)
* @tc.name: it_test_shm_003
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm003, TestSize.Level0)
{
......@@ -79,7 +76,6 @@ HWTEST_F(MemShmTest, ItTestShm003, TestSize.Level0)
* @tc.name: it_test_shm_004
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm004, TestSize.Level0)
{
......@@ -90,7 +86,6 @@ HWTEST_F(MemShmTest, ItTestShm004, TestSize.Level0)
* @tc.name: it_test_shm_005
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm005, TestSize.Level0)
{
......@@ -101,7 +96,6 @@ HWTEST_F(MemShmTest, ItTestShm005, TestSize.Level0)
* @tc.name: it_test_shm_006
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm006, TestSize.Level0)
{
......@@ -112,7 +106,6 @@ HWTEST_F(MemShmTest, ItTestShm006, TestSize.Level0)
* @tc.name: it_test_shm_007
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm007, TestSize.Level0)
{
......@@ -123,7 +116,6 @@ HWTEST_F(MemShmTest, ItTestShm007, TestSize.Level0)
* @tc.name: it_test_shm_008
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm008, TestSize.Level0)
{
......@@ -134,7 +126,6 @@ HWTEST_F(MemShmTest, ItTestShm008, TestSize.Level0)
* @tc.name: it_test_shm_009
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm009, TestSize.Level0)
{
......@@ -145,7 +136,6 @@ HWTEST_F(MemShmTest, ItTestShm009, TestSize.Level0)
* @tc.name: it_test_shm_010
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm010, TestSize.Level0)
{
......@@ -158,7 +148,6 @@ HWTEST_F(MemShmTest, ItTestShm010, TestSize.Level0)
* @tc.name: it_test_shm_011
* @tc.desc: function for MemShmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemShmTest, ItTestShm011, TestSize.Level0)
{
......
......@@ -46,7 +46,6 @@ public:
* @tc.name: it_test_mmap_001
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMmap001, TestSize.Level0)
{
......@@ -57,7 +56,6 @@ HWTEST_F(MemVmTest, ItTestMmap001, TestSize.Level0)
* @tc.name: it_test_mmap_002
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMmap002, TestSize.Level0)
{
......@@ -68,7 +66,6 @@ HWTEST_F(MemVmTest, ItTestMmap002, TestSize.Level0)
* @tc.name: it_test_mmap_003
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMmap003, TestSize.Level0)
{
......@@ -79,7 +76,6 @@ HWTEST_F(MemVmTest, ItTestMmap003, TestSize.Level0)
* @tc.name: it_test_mmap_004
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMmap004, TestSize.Level0)
{
......@@ -91,7 +87,6 @@ HWTEST_F(MemVmTest, ItTestMmap004, TestSize.Level0)
* @tc.name: it_test_mmap_005
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMmap005, TestSize.Level0)
{
......@@ -102,7 +97,6 @@ HWTEST_F(MemVmTest, ItTestMmap005, TestSize.Level0)
* @tc.name: it_test_mmap_006
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMmap006, TestSize.Level0)
{
......@@ -113,7 +107,6 @@ HWTEST_F(MemVmTest, ItTestMmap006, TestSize.Level0)
* @tc.name: it_test_mmap_007
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMmap007, TestSize.Level0)
{
......@@ -124,7 +117,6 @@ HWTEST_F(MemVmTest, ItTestMmap007, TestSize.Level0)
* @tc.name: it_test_mmap_008
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMmap008, TestSize.Level0)
{
......@@ -135,7 +127,6 @@ HWTEST_F(MemVmTest, ItTestMmap008, TestSize.Level0)
* @tc.name: it_test_mmap_009
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMmap009, TestSize.Level0)
{
......@@ -146,7 +137,6 @@ HWTEST_F(MemVmTest, ItTestMmap009, TestSize.Level0)
* @tc.name: it_test_mmap_010
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: DTS202101220LSHEDP1100
*/
HWTEST_F(MemVmTest, ItTestMmap010, TestSize.Level0)
{
......@@ -157,7 +147,6 @@ HWTEST_F(MemVmTest, ItTestMmap010, TestSize.Level0)
* @tc.name: it_test_mprotect_001
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMprotect001, TestSize.Level0)
{
......@@ -169,7 +158,6 @@ HWTEST_F(MemVmTest, ItTestMprotect001, TestSize.Level0)
* @tc.name: it_test_oom_001
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestOom001, TestSize.Level0)
{
......@@ -181,7 +169,6 @@ HWTEST_F(MemVmTest, ItTestOom001, TestSize.Level0)
* @tc.name: it_test_mremap_001
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestMremap001, TestSize.Level0)
{
......@@ -192,7 +179,6 @@ HWTEST_F(MemVmTest, ItTestMremap001, TestSize.Level0)
* @tc.name: it_test_user_copy_001
* @tc.desc: function for MemVmTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, ItTestUserCopy001, TestSize.Level0)
{
......@@ -203,7 +189,6 @@ HWTEST_F(MemVmTest, ItTestUserCopy001, TestSize.Level0)
* @tc.name: open_wmemstream_test_001
* @tc.desc: function for open_wmemstream
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MemVmTest, open_wmemstream_test_001, TestSize.Level0)
{
......
......@@ -123,7 +123,6 @@ static int Testcase(void)
ret = CheckedMmap(PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1);
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
/* MAP_ANONYMOUS should require an fd of -1. */
ret = CheckedMmap(PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, 0);
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
......
......@@ -45,7 +45,6 @@ public:
* @tc.name: it_test_hid_001
* @tc.desc: function for drivers hid
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(DriversHidTest, ItTestHid001, TestSize.Level0)
{
......
......@@ -45,7 +45,6 @@ public:
* @tc.name: it_test_storage_001
* @tc.desc: function for drivers storage
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(DriversStorageTest, ItTestStorage001, TestSize.Level0)
{
......
......@@ -46,7 +46,6 @@ public:
* @tc.name: IPC_TEST_MKFIFOAT_001
* @tc.desc: function for IoTest:mkfifoat-normal test
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
#if 0
HWTEST_F(IoTest, IPC_TEST_MKFIFOAT_001, TestSize.Level0)
......@@ -59,7 +58,6 @@ HWTEST_F(IoTest, IPC_TEST_MKFIFOAT_001, TestSize.Level0)
* @tc.name: IPC_TEST_MKFIFOAT_002
* @tc.desc: function for IoTest:mkfifoat-innormal test
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
#if 0
HWTEST_F(IoTest, IPC_TEST_MKFIFOAT_002, TestSize.Level0)
......
......@@ -45,7 +45,6 @@ public:
* @tc.name: ItPosixLiteIpc001
* @tc.desc: function test for liteipc
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(LiteIpcTest, ItPosixLiteIpc001, TestSize.Level0)
{
......@@ -56,7 +55,6 @@ HWTEST_F(LiteIpcTest, ItPosixLiteIpc001, TestSize.Level0)
* @tc.name: ItPosixLiteIpc002
* @tc.desc: function test for liteipc
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(LiteIpcTest, ItPosixLiteIpc002, TestSize.Level0)
{
......
......@@ -58,7 +58,7 @@ int TestPipeSingleProcess()
errno = 0;
char sentence1[15] = "Hello World";
char a[4] = {0};
sprintf(a, "%d", i);
(void)sprintf_s(a, sizeof(a), "%d", i);
strcat(sentence1, a);
int ret = write(*writeFd, sentence1, strlen(sentence1) + 1);
usleep(100000); // 100000, Used to calculate the delay time.
......
......@@ -58,7 +58,7 @@ int TestPipeSingleProcessFcntl()
errno = 0;
char sentence1[15] = "Hello World";
char a[4] = {0};
sprintf(a, "%d", i);
(void)sprintf_s(a, sizeof(a), "%d", i);
strcat(sentence1, a);
int ret = write(*writeFd, sentence1, strlen(sentence1) + 1);
usleep(100000); // 100000, Used to calculate the delay time.
......
......@@ -33,7 +33,8 @@
static void SigPrint(int sig)
{
printf("%s\n", __FUNCTION__, __LINE__);
(void)sig;
printf("%s%d\n", __FUNCTION__, __LINE__);
}
static void *ThreadSetFunc2(void *arg)
......
......@@ -33,7 +33,8 @@
static void SigPrint(int sig)
{
printf("%s\n", __FUNCTION__, __LINE__);
(void)sig;
printf("%s%d\n", __FUNCTION__, __LINE__);
}
static void *ThreadSetFunc2(void *arg)
......
......@@ -33,10 +33,11 @@
static void SigPrint(int sig)
{
printf("%s\n", __FUNCTION__, __LINE__);
(void)sig;
printf("%s%d\n", __FUNCTION__, __LINE__);
}
static int TestSigTimeWaitKillProcess()
static int TestSigTimeWaitKillProcess(void)
{
sigset_t set;
int sig, fpid, retValue, status;
......
......@@ -33,10 +33,11 @@
static void SigPrint(int sig)
{
printf("%s\n", __FUNCTION__, __LINE__);
(void)sig;
printf("%s%d\n", __FUNCTION__, __LINE__);
}
static int TestSigTimeWaitDirectKillChild()
static int TestSigTimeWaitDirectKillChild(void)
{
sigset_t set;
int sig, fpid, retValue, status;
......
......@@ -35,6 +35,7 @@ static int g_sigCount = 0;
static int g_sigCount1 = 0;
static void SigPrint(int sig)
{
(void)sig;
g_sigCount++;
printf("signal receive sucess\n");
}
......@@ -91,4 +92,4 @@ static UINT32 TestCase(VOID)
void ItPosixSignal040(void)
{
TEST_ADD_CASE(__FUNCTION__, TestCase, TEST_POSIX, TEST_SIGNAL, TEST_LEVEL0, TEST_FUNCTION);
}
\ No newline at end of file
}
......@@ -35,15 +35,18 @@
static void Sigprint(int sig)
{
(void)sig;
printf("enter sighandle : -------------------------\n");
}
static void Sigprint111(int sig)
{
(void)sig;
printf("enter sighandle : ---111----------------------\n");
}
static void *ThreadFunc7(void *arg)
{
(void)arg;
int retval;
sigset_t set, oldset;
sighandler_t sigret;
......
......@@ -45,7 +45,6 @@ public:
* @tc.name: IT_POSIX_SIGNAL_002
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal002, TestSize.Level0)
{
......@@ -56,7 +55,6 @@ HWTEST_F(SignalTest, ItPosixSignal002, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_009
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal009, TestSize.Level0)
{
......@@ -67,7 +65,6 @@ HWTEST_F(SignalTest, ItPosixSignal009, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_013
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal013, TestSize.Level0)
{
......@@ -78,7 +75,6 @@ HWTEST_F(SignalTest, ItPosixSignal013, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_014
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal014, TestSize.Level0)
{
......@@ -90,7 +86,6 @@ HWTEST_F(SignalTest, ItPosixSignal014, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_021
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal021, TestSize.Level0)
{
......@@ -101,7 +96,6 @@ HWTEST_F(SignalTest, ItPosixSignal021, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_022
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal022, TestSize.Level0)
{
......@@ -112,7 +106,6 @@ HWTEST_F(SignalTest, ItPosixSignal022, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_023
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal023, TestSize.Level0)
{
......@@ -123,7 +116,6 @@ HWTEST_F(SignalTest, ItPosixSignal023, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_024
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal024, TestSize.Level0)
{
......@@ -134,7 +126,6 @@ HWTEST_F(SignalTest, ItPosixSignal024, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_031
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal031, TestSize.Level0)
{
......@@ -145,7 +136,6 @@ HWTEST_F(SignalTest, ItPosixSignal031, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_032
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal032, TestSize.Level0)
{
......@@ -156,7 +146,6 @@ HWTEST_F(SignalTest, ItPosixSignal032, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_035
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal035, TestSize.Level0)
{
......@@ -167,7 +156,6 @@ HWTEST_F(SignalTest, ItPosixSignal035, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_036
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal036, TestSize.Level0)
{
......@@ -178,7 +166,6 @@ HWTEST_F(SignalTest, ItPosixSignal036, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_037
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal037, TestSize.Level0)
{
......@@ -189,7 +176,6 @@ HWTEST_F(SignalTest, ItPosixSignal037, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_039
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal039, TestSize.Level0)
{
......@@ -200,7 +186,6 @@ HWTEST_F(SignalTest, ItPosixSignal039, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_042
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal042, TestSize.Level0)
{
......@@ -211,7 +196,6 @@ HWTEST_F(SignalTest, ItPosixSignal042, TestSize.Level0)
* @tc.name: ItPosixPipe002
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixPipe002, TestSize.Level0)
{
......@@ -222,7 +206,6 @@ HWTEST_F(SignalTest, ItPosixPipe002, TestSize.Level0)
* @tc.name: ItPosixMkfifo002
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixMkfifo002, TestSize.Level0)
{
......@@ -233,7 +216,6 @@ HWTEST_F(SignalTest, ItPosixMkfifo002, TestSize.Level0)
* @tc.name: IT_IPC_FD_ISSET_001
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItIpcFdIsset001, TestSize.Level0)
{
......@@ -246,7 +228,6 @@ HWTEST_F(SignalTest, ItIpcFdIsset001, TestSize.Level0)
* @tc.name: IT_IPC_FD_CLR_001
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItIpcFdClr001, TestSize.Level0)
{
......@@ -257,7 +238,6 @@ HWTEST_F(SignalTest, ItIpcFdClr001, TestSize.Level0)
* @tc.name: IT_IPC_FD_SET_001
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItIpcFdSet001, TestSize.Level0)
{
......@@ -268,7 +248,6 @@ HWTEST_F(SignalTest, ItIpcFdSet001, TestSize.Level0)
* @tc.name: IT_IPC_FD_ZERO_001
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItIpcFdZero001, TestSize.Level0)
{
......@@ -279,7 +258,6 @@ HWTEST_F(SignalTest, ItIpcFdZero001, TestSize.Level0)
* @tc.name: IT_IPC_SIGACTION_001^M
* @tc.desc: function for SignalTest^M
* @tc.type: FUNC^M
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItIpcSigaction001, TestSize.Level0)
{
......@@ -290,7 +268,6 @@ HWTEST_F(SignalTest, ItIpcSigaction001, TestSize.Level0)
* @tc.name: IT_IPC_SIGPAUSE_001
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItIpcSigpause001, TestSize.Level0)
{
......@@ -301,7 +278,6 @@ HWTEST_F(SignalTest, ItIpcSigpause001, TestSize.Level0)
* @tc.name: IT_IPC_SIGPROMASK_001
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItIpcSigpromask001, TestSize.Level0)
{
......@@ -312,7 +288,6 @@ HWTEST_F(SignalTest, ItIpcSigpromask001, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_001
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal001, TestSize.Level0)
{
......@@ -323,7 +298,6 @@ HWTEST_F(SignalTest, ItPosixSignal001, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_003
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal003, TestSize.Level0)
{
......@@ -334,7 +308,6 @@ HWTEST_F(SignalTest, ItPosixSignal003, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_004
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal004, TestSize.Level0)
{
......@@ -345,7 +318,6 @@ HWTEST_F(SignalTest, ItPosixSignal004, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_005
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal005, TestSize.Level0)
{
......@@ -356,7 +328,6 @@ HWTEST_F(SignalTest, ItPosixSignal005, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_006
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal006, TestSize.Level0)
{
......@@ -367,7 +338,6 @@ HWTEST_F(SignalTest, ItPosixSignal006, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_007
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal007, TestSize.Level0)
{
......@@ -378,7 +348,6 @@ HWTEST_F(SignalTest, ItPosixSignal007, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_008
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal008, TestSize.Level0)
{
......@@ -389,7 +358,6 @@ HWTEST_F(SignalTest, ItPosixSignal008, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_010
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal010, TestSize.Level0)
{
......@@ -400,7 +368,6 @@ HWTEST_F(SignalTest, ItPosixSignal010, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_011
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal011, TestSize.Level0)
{
......@@ -411,7 +378,6 @@ HWTEST_F(SignalTest, ItPosixSignal011, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_012
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal012, TestSize.Level0)
{
......@@ -422,7 +388,6 @@ HWTEST_F(SignalTest, ItPosixSignal012, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_015
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal015, TestSize.Level0)
{
......@@ -433,7 +398,6 @@ HWTEST_F(SignalTest, ItPosixSignal015, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_016
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal016, TestSize.Level0)
{
......@@ -444,7 +408,6 @@ HWTEST_F(SignalTest, ItPosixSignal016, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_017
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal017, TestSize.Level0)
{
......@@ -455,7 +418,6 @@ HWTEST_F(SignalTest, ItPosixSignal017, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_018
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal018, TestSize.Level0)
{
......@@ -466,7 +428,6 @@ HWTEST_F(SignalTest, ItPosixSignal018, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_019
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal019, TestSize.Level0)
{
......@@ -477,7 +438,6 @@ HWTEST_F(SignalTest, ItPosixSignal019, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_020
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal020, TestSize.Level0)
{
......@@ -488,7 +448,6 @@ HWTEST_F(SignalTest, ItPosixSignal020, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_025
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal025, TestSize.Level0)
{
......@@ -499,7 +458,6 @@ HWTEST_F(SignalTest, ItPosixSignal025, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_026
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal026, TestSize.Level0)
{
......@@ -510,7 +468,6 @@ HWTEST_F(SignalTest, ItPosixSignal026, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_028
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal028, TestSize.Level0)
{
......@@ -521,7 +478,6 @@ HWTEST_F(SignalTest, ItPosixSignal028, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_029
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal029, TestSize.Level0)
{
......@@ -532,7 +488,6 @@ HWTEST_F(SignalTest, ItPosixSignal029, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_030
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal030, TestSize.Level0)
{
......@@ -543,7 +498,6 @@ HWTEST_F(SignalTest, ItPosixSignal030, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_033
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal033, TestSize.Level0)
{
......@@ -554,7 +508,6 @@ HWTEST_F(SignalTest, ItPosixSignal033, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_038
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal038, TestSize.Level0)
{
......@@ -565,7 +518,6 @@ HWTEST_F(SignalTest, ItPosixSignal038, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_040
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal040, TestSize.Level0)
{
......@@ -576,7 +528,6 @@ HWTEST_F(SignalTest, ItPosixSignal040, TestSize.Level0)
* @tc.name: IT_POSIX_SIGNAL_041
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixSignal041, TestSize.Level0)
{
......@@ -587,7 +538,6 @@ HWTEST_F(SignalTest, ItPosixSignal041, TestSize.Level0)
* @tc.name: IT_IPC_PIPE_002
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItIpcPipe002, TestSize.Level0)
{
......@@ -598,7 +548,6 @@ HWTEST_F(SignalTest, ItIpcPipe002, TestSize.Level0)
* @tc.name: IT_IPC_PIPE_003
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItIpcPipe003, TestSize.Level0)
{
......@@ -609,7 +558,6 @@ HWTEST_F(SignalTest, ItIpcPipe003, TestSize.Level0)
* @tc.name: ItPosixPipe001
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixPipe001, TestSize.Level0)
{
......@@ -620,7 +568,6 @@ HWTEST_F(SignalTest, ItPosixPipe001, TestSize.Level0)
* @tc.name: ItPosixPipe003
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixPipe003, TestSize.Level0)
{
......@@ -631,7 +578,6 @@ HWTEST_F(SignalTest, ItPosixPipe003, TestSize.Level0)
* @tc.name: ItPosixPipe004
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixPipe004, TestSize.Level0)
{
......@@ -642,7 +588,6 @@ HWTEST_F(SignalTest, ItPosixPipe004, TestSize.Level0)
* @tc.name: ItPosixPipe005
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixPipe005, TestSize.Level0)
{
......@@ -653,7 +598,6 @@ HWTEST_F(SignalTest, ItPosixPipe005, TestSize.Level0)
* @tc.name: ItPosixPipe006
* @tc.desc: function for SignalTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SignalTest, ItPosixPipe006, TestSize.Level0)
{
......
......@@ -40,8 +40,13 @@ static UINT32 Testcase(VOID)
char buffer[20]; // 20, target buffer size
char pathname[NAME_BUF_SIZE];
char *filename = "/mkfifotest2";
strncpy(pathname, "/dev", NAME_BUF_SIZE);
strcat(pathname, filename);
char *dir = "/dev";
errno_t ret1 = strncpy_s(pathname, NAME_BUF_SIZE, dir, strlen(dir));
ICUNIT_ASSERT_EQUAL(ret1, EOK, ret1);
ret1 = strcat_s(pathname, NAME_BUF_SIZE, filename);
ICUNIT_ASSERT_EQUAL(ret1, EOK, ret1);
ret = mkfifo(pathname, 0777); // 0777, file athurioty
ICUNIT_GOTO_EQUAL(ret, 0, ret, EXIT1);
spid = fork();
......
......@@ -40,8 +40,13 @@ static UINT32 Testcase(VOID)
char buffer[20]; // 20, target buffer size
char pathname[NAME_BUF_SIZE];
char *filename = "/mkfifotest3";
strncpy(pathname, "/dev", NAME_BUF_SIZE);
strcat(pathname, filename);
char *dir = "/dev";
errno_t ret1 = strncpy_s(pathname, NAME_BUF_SIZE, dir, strlen(dir));
ICUNIT_ASSERT_EQUAL(ret1, EOK, ret1);
ret1 = strcat_s(pathname, NAME_BUF_SIZE, filename);
ICUNIT_ASSERT_EQUAL(ret1, EOK, ret1);
ret = mkfifo(pathname, 0777); // 0777, file athurioty
ICUNIT_GOTO_EQUAL(ret, 0, ret, EXIT1);
spid = fork();
......
......@@ -53,56 +53,6 @@ static int TestMkfifoReturn()
ICUNIT_GOTO_EQUAL(retValue, -1, retValue, EXIT);
ICUNIT_GOTO_EQUAL(errno, EEXIST, errno, EXIT);
/* // no support errno EDQUOT ENOENT EROFS ENAMETOOLONG
retValue = mkfifo("/dev/fifo0/fifo1", 0777);
ICUNIT_GOTO_EQUAL(retValue, -1, retValue, EXIT);
ICUNIT_GOTO_EQUAL(errno, ENOENT, errno, EXIT);
mkdir("/dev/usr", 0444);
ICUNIT_GOTO_EQUAL(retValue, 0, retValue,EXIT);
retValue = mkfifo("/dev/usr/fifo0", 0777);
ICUNIT_GOTO_EQUAL(retValue, -1, retValue, EXIT);
ICUNIT_GOTO_EQUAL(errno, EROFS, errno, EXIT);
sprintf(pathname, "/dev/");
for (i = 5; i < NAME_BUF_SIZE - 4; i = i + 4) {
sprintf(&pathname[i], "fifo");
}
printf("pathname : %s\n", pathname);
retValue = mkfifo(pathname, 0777);
ICUNIT_GOTO_EQUAL(retValue, -1, retValue, EXIT);
ICUNIT_GOTO_EQUAL(errno, ENAMETOOLONG, errno, EXIT);
retValue = mkfifo("/usr/fifo0", 0777);
ICUNIT_GOTO_EQUAL(retValue, -1, retValue, EXIT);
pid = fork();
if (pid < 0) {
printf("Fork error\n");
return LOS_NOK;
} else if (pid == 0) {
for (i = 1; i <= 100024; i++) {
sprintf(pathname, "/dev/fifo%d", i);
mkfifo(pathname, 0777);
}
retValue = mkfifo("/dev/fifo100025", 0777);
if (retValue != -1) {
printf("error: unexpect return mkfifo\n");
exit(FAULT1);
}
if (errno != EDQUOT) {
printf("error: unexpect errno mkfifo\n");
exit(FAULT2);
}
exit(LOS_OK);
}
wait(&status);
ICUNIT_GOTO_EQUAL(WEXITSTATUS(status),LOS_OK,WEXITSTATUS(status), EXIT);
for (i = 0; i <= 100025; i++) {
sprintf(pathname, "/dev/fifo%d", i);
unlink(pathname);
} */
unlink("/usr/fifo0");
unlink("/dev/fifo0/fifo1");
unlink("/dev/usr/fifo0");
......
......@@ -67,7 +67,7 @@ static int TestPipeMultiProcess()
errno = 0;
char sentence1[15] = "Hello World";
char a[2] = {0};
sprintf(a, "%d", i);
(void)sprintf_s(a, sizeof(a), "%d", i);
strcat(sentence1, a);
int ret = write(*writeFd, sentence1, strlen(sentence1) + 1);
ICUNIT_ASSERT_EQUAL(ret, strlen(sentence1) + 1, ret);
......@@ -87,7 +87,7 @@ static int TestPipeMultiProcess()
printf("read\n");
char sentence1[15] = "Hello World";
char a[2] = {0};
sprintf(a, "%d", i);
(void)sprintf_s(a, sizeof(a), "%d", i);
strcat(sentence1, a);
memset(readbuffer, 0, sizeof(readbuffer));
retValue = read(*readFd, readbuffer, strlen(sentence1) + 1);
......
......@@ -35,10 +35,11 @@
static int g_sigCount = 0;
static void SigPrint(int sig)
{
(void)sig;
g_sigCount++;
}
static int TestRaiseIgnore()
static int TestRaiseIgnore(void)
{
int sig = SIGPWR;
void *ret;
......
......@@ -34,15 +34,17 @@
static int g_sigCount = 0;
static void SigPrint(int sig)
{
(void)sig;
g_sigCount++;
}
static void SigPrint1(int sig)
{
(void)sig;
g_sigCount += 100; // 100, Used to calculate the progress of the program.
}
static int TestSigSet()
static int TestSigSet(void)
{
sigset_t set = { 0 };
sigset_t set1 = { 0 };
......
......@@ -33,19 +33,22 @@
static void SigPrint(int sig)
{
printf("%s\n", __FUNCTION__, __LINE__);
(void)sig;
printf("%s%d\n", __FUNCTION__, __LINE__);
return;
}
static void SigPrint1(int sig)
{
printf("%s\n", __FUNCTION__, __LINE__);
(void)sig;
printf("%s%d\n", __FUNCTION__, __LINE__);
return;
}
static int g_sigCount = 0;
static void SigPrint2(int sig)
{
(void)sig;
g_sigCount = 1;
printf("%s, count = %d\n", __FUNCTION__, g_sigCount);
return;
......@@ -53,6 +56,7 @@ static void SigPrint2(int sig)
static void *ThreadSetFunc2(void *arg)
{
(void)arg;
void (*retSig)(int);
retSig = signal(SIGALRM, SigPrint2);
ICUNIT_GOTO_NOT_EQUAL(retSig, SIG_ERR, retSig, EXIT);
......@@ -65,6 +69,7 @@ EXIT:
static void *ThreadSetDfl(void *arg)
{
(void)arg;
void (*retSig)(int);
retSig = signal(SIGALRM, SIG_DFL);
ICUNIT_GOTO_NOT_EQUAL(retSig, SIG_ERR, retSig, EXIT);
......@@ -77,6 +82,7 @@ EXIT:
static void *ThreadKill(void *arg)
{
(void)arg;
int retValue;
retValue = raise(SIGALRM);
......@@ -88,7 +94,7 @@ EXIT:
return (void *)-1;
}
static int TestSigMultiPthread()
static int TestSigMultiPthread(void)
{
int fpid;
int status;
......
......@@ -35,15 +35,17 @@
static void SigPrint(int signum)
{
(void)signum;
printf("Catch signal %d\n", signum);
}
static void SigQuit(int signum)
{
(void)signum;
printf("QUIT\n");
}
static int TestSignal()
static int TestSignal(void)
{
int sigI = SIGINT;
int sigQ = SIGQUIT;
......@@ -86,4 +88,4 @@ static int TestSignal()
void ItPosixSignal021(void)
{
TEST_ADD_CASE(__FUNCTION__, TestSignal, TEST_POSIX, TEST_SIGNAL, TEST_LEVEL0, TEST_FUNCTION);
}
\ No newline at end of file
}
......@@ -33,15 +33,17 @@
static void OldAction(int signum)
{
(void)signum;
printf("Here is the old action\n");
}
static void NewAction(int signum)
{
(void)signum;
printf("Here is the new action\n");
}
static int TestSigaction()
static int TestSigaction(void)
{
int retValue, status;
int fpid = fork();
......@@ -102,4 +104,4 @@ static int TestSigaction()
void ItPosixSignal024(void)
{
TEST_ADD_CASE(__FUNCTION__, TestSigaction, TEST_POSIX, TEST_SIGNAL, TEST_LEVEL0, TEST_FUNCTION);
}
\ No newline at end of file
}
......@@ -38,16 +38,6 @@ static UINT32 TestCase(VOID)
int ret = 0;
sigset_t set;
/* // EINVAL no support
ret = sigemptyset(NULL);
ICUNIT_ASSERT_EQUAL(ret, -1, ret);
ICUNIT_ASSERT_EQUAL(errno, EINVAL, errno);
ret = sigfillset(NULL);
ICUNIT_ASSERT_EQUAL(ret, -1, ret);
ICUNIT_ASSERT_EQUAL(errno, EINVAL, errno);
*/
int status;
int fpid = fork();
if (fpid == 0) {
......@@ -119,4 +109,4 @@ static UINT32 TestCase(VOID)
void ItPosixSignal031(void)
{
TEST_ADD_CASE(__FUNCTION__, TestCase, TEST_POSIX, TEST_SIGNAL, TEST_LEVEL0, TEST_FUNCTION);
}
\ No newline at end of file
}
......@@ -34,6 +34,7 @@
static int g_sigCount = 0;
static void SigPrint(int sig)
{
(void)sig;
g_sigCount++;
printf("signal receive sucess\n");
}
......@@ -75,4 +76,4 @@ static UINT32 TestCase(VOID)
void ItPosixSignal032(void)
{
TEST_ADD_CASE(__FUNCTION__, TestCase, TEST_POSIX, TEST_SIGNAL, TEST_LEVEL0, TEST_FUNCTION);
}
\ No newline at end of file
}
......@@ -34,6 +34,7 @@
static int g_sigCount = 0;
static void SigPrint(int sig)
{
(void)sig;
g_sigCount++;
}
......
......@@ -57,12 +57,6 @@ static UINT32 TestCase(VOID)
exit(0);
}
/* // EFAULT no support
ret = setitimer(ITIMER_VIRTUAL, NULL, &oldValue);
printf("ret = %d errno = %d EFAULT = %d\n", ret, errno, EFAULT);
ICUNIT_ASSERT_EQUAL(ret, -1, ret);
ICUNIT_ASSERT_EQUAL(errno, EFAULT, errno); */
ret = waitpid(fpid, &status, 0);
ICUNIT_ASSERT_EQUAL(ret, fpid, ret);
ICUNIT_ASSERT_EQUAL(WEXITSTATUS(status), 0, WEXITSTATUS(status));
......
......@@ -47,7 +47,6 @@ public:
* @tc.name: IT_TEST_TRACE_001
* @tc.desc: function for TraceTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TraceTest, ItTestTrace001, TestSize.Level0)
{
......@@ -58,7 +57,6 @@ HWTEST_F(TraceTest, ItTestTrace001, TestSize.Level0)
* @tc.name: IT_TEST_TRACE_002
* @tc.desc: function for TraceTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TraceTest, ItTestTrace002, TestSize.Level0)
{
......@@ -69,7 +67,6 @@ HWTEST_F(TraceTest, ItTestTrace002, TestSize.Level0)
* @tc.name: IT_TEST_TRACE_003
* @tc.desc: function for TraceTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TraceTest, ItTestTrace003, TestSize.Level0)
{
......@@ -80,7 +77,6 @@ HWTEST_F(TraceTest, ItTestTrace003, TestSize.Level0)
* @tc.name: IT_TEST_TRACE_004
* @tc.desc: function for TraceTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TraceTest, ItTestTrace004, TestSize.Level0)
{
......
......@@ -39,7 +39,9 @@ static UINT32 Testcase(VOID)
struct mntent *mnt = NULL;
FILE *fp = NULL;
strcat_s(pathname1, JFFS_STANDARD_NAME_LENGTH, "test12");
ret1 = strcat_s(pathname1, JFFS_STANDARD_NAME_LENGTH, "test12");
ICUNIT_ASSERT_EQUAL(ret1, EOK, ret1);
fp = setmntent(pathname1, "w+b");
ICUNIT_GOTO_NOT_EQUAL(fp, NULL, fp, EXIT);
......
......@@ -43,7 +43,7 @@ static INT32 DisplayInfo(const char *fpath, const struct stat *sb, int tflag, st
if (tflag == FTW_NS) {
printf("-------");
} else {
printf("%7jd", (intmax_t)sb->st_size);
printf("%7d", (intmax_t)sb->st_size);
}
printf(" %-40s %d %s\n", fpath, ftwbuf->base, fpath + ftwbuf->base);
......
......@@ -42,11 +42,6 @@ static UINT32 testcase8(VOID)
int fd = 0;
/* omit to create test file dynamicly,use prepared test files in /storage instand. */
#if 0
errno = 0;
sprintf(pathname, "%s%s", __func__, ".tmp");
#endif
errno = 0;
fd = open(pathname, O_CREAT, 0777);
TEST_PRINT("[INFO]%s:%d,%s,fd=%d,errno=%d,errstr=%s\n", __FILE__, __LINE__, __func__, fd, errno, strerror(errno));
......
......@@ -49,7 +49,7 @@ static int TestUmask(const char *path)
ICUNIT_ASSERT_EQUAL(mode, 0022, mode); // mode: 0022
mode = umask(0022); // umask: 0022
ICUNIT_ASSERT_EQUAL(mode, 0044, mode); // mode: 0044
sprintf(filename, "%s/%s", path, g_testDIR);
(void)sprintf_s(filename, sizeof(filename), "%s/%s", path, g_testDIR);
ret = mkdir(filename, HIGHEST_AUTHORITY);
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
ret = stat(filename, &buf);
......@@ -74,10 +74,10 @@ static int TestOpen(const char *path)
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
// uid 111, gid 111,home dir 0 0 757
sprintf(filename, "%s/%s", path, g_testDIR);
(void)sprintf_s(filename, sizeof(filename), "%s/%s", path, g_testDIR);
ret = mkdir(filename, 0753); // mode: 0753
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
sprintf(filename1, "%s/%s", filename, "f1");
(void)sprintf_s(filename1, sizeof(filename1), "%s/%s", filename, "f1");
ret = open(filename1, O_CREAT | O_WRONLY, 0755); // mode: 0755
ICUNIT_ASSERT_NOT_EQUAL(ret, -1, ret);
close(ret);
......@@ -88,7 +88,7 @@ static int TestOpen(const char *path)
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
// uid 222, gid 111,home dir 111 111 753
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
sprintf(filename2, "%s/%s", filename, "f2");
(void)sprintf_s(filename2, sizeof(filename2), "%s/%s", filename, "f2");
ret = open(filename2, O_CREAT | O_WRONLY, 0755); // mode: 0755
ICUNIT_ASSERT_EQUAL(ret, -1, ret);
ret = open(filename1, O_WRONLY);
......@@ -98,7 +98,7 @@ static int TestOpen(const char *path)
ret = setgid(g_testUID2);
// uid 222, gid 222,home dir 111 111 753
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
sprintf(filename3, "%s/%s", filename, "f3");
(void)sprintf_s(filename3, sizeof(filename3), "%s/%s", filename, "f3");
ret = open(filename3, O_CREAT | O_WRONLY, 0755); // mode: 0755
printf("%s, %d ret %d\n", __FUNCTION__, __LINE__, ret);
ICUNIT_ASSERT_NOT_EQUAL(ret, -1, ret);
......@@ -135,10 +135,10 @@ static int TestUnlink(const char *path)
printf("%s, %d\n", __FUNCTION__, __LINE__);
// uid 0, gid 0, home dir 0 0 757
sprintf(filename, "%s/%s", path, g_testDIR);
(void)sprintf_s(filename, sizeof(filename), "%s/%s", path, g_testDIR);
ret = mkdir(filename, 0757); // mode 757
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
sprintf(filename1, "%s/%s", filename, "f1");
(void)sprintf_s(filename1, sizeof(filename1), "%s/%s", filename, "f1");
ret = open(filename1, O_CREAT | O_WRONLY, 0755); // mode: 0755
ICUNIT_ASSERT_NOT_EQUAL(ret, -1, ret);
......@@ -174,7 +174,7 @@ static int TestMkdir(const char *path)
printf("%s, %d\n", __FUNCTION__, __LINE__);
// uid 0, gid 0, home dir 0 0 757
sprintf(filename, "%s/%s", path, g_testDIR);
(void)sprintf_s(filename, sizeof(filename), "%s/%s", path, g_testDIR);
ret = mkdir(filename, 0735); // mode 735
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
......@@ -204,10 +204,10 @@ static int TestChmod(const char *path)
printf("%s, %d\n", __FUNCTION__, __LINE__);
// uid 0, gid 0, home dir 0 0 757
sprintf(filename, "%s/%s", path, g_testDIR);
(void)sprintf_s(filename, sizeof(filename), "%s/%s", path, g_testDIR);
ret = mkdir(filename, 0757); // mode 757
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
sprintf(filename1, "%s/%s", filename, "f1");
(void)sprintf_s(filename1, sizeof(filename1), "%s/%s", filename, "f1");
setuid(g_testUID2);
ret = chmod(filename, 0111); // mode: 0111
......@@ -238,10 +238,10 @@ static int TestStatChdir(const char *path)
printf("%s, %d\n", __FUNCTION__, __LINE__);
// uid 0, gid 0, home dir 0 0 757
sprintf(filename, "%s/%s", path, g_testDIR);
(void)sprintf_s(filename, sizeof(filename), "%s/%s", path, g_testDIR);
ret = mkdir(filename, 0700); // mode: 0700
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
sprintf(filename1, "%s/%s", filename, "f1");
(void)sprintf_s(filename1, sizeof(filename1)"%s/%s", filename, "f1");
ret = mkdir(filename1, 0755); // mode: 0755
ICUNIT_ASSERT_NOT_EQUAL(ret, -1, ret);
......@@ -294,15 +294,15 @@ static int TestRename(const char *path)
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
// uid 111, gid 111,home dir 0 0 757
sprintf(filename, "%s/%s", path, g_testDIR);
(void)sprintf_s(filename, sizeof(filename), "%s/%s", path, g_testDIR);
ret = mkdir(filename, 0711); // mode: 0711
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
sprintf(filename1, "%s/%s", filename, "f1");
(void)sprintf_s(filename1, sizeof(filename1), "%s/%s", filename, "f1");
ret = mkdir(filename1, 0755); // mode: 0755
ICUNIT_ASSERT_NOT_EQUAL(ret, -1, ret);
close(ret);
sprintf(filename2, "%s/%s", filename, "f2");
(void)sprintf_s(filename2, sizeof(filename2), "%s/%s", filename, "f2");
ret = rename(filename1, filename2);
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
......@@ -310,7 +310,7 @@ static int TestRename(const char *path)
// uid 222, gid 222,home dir 111 111 753
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
sprintf(filename2, "%s/%s", filename, "f2");
(void)sprintf_s(filename2, sizeof(filename2), "%s/%s", filename, "f2");
ret = rename(filename2, filename1);
ICUNIT_ASSERT_EQUAL(ret, -1, ret);
......@@ -338,7 +338,7 @@ static int TestAccess(const char *path)
printf("%s, %d\n", __FUNCTION__, __LINE__);
// uid 0, gid 0, home dir 0 0 757
sprintf(filename, "%s/%s", path, g_testDIR);
(void)sprintf_s(filename, sizeof(filename), "%s/%s", path, g_testDIR);
ret = mkdir(filename, 0757); // mode 757
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
......@@ -406,8 +406,8 @@ static int TestCapReadSearch()
ret = mkdir("/storage/test_jffs2", 0757); // mode 0757
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
sprintf(filenameParent, "%s/%s", "/storage/test_jffs2", "testParent");
sprintf(filenameChild, "%s/%s", filenameParent, "testChild");
(void)sprintf_s(filenameParent, sizeof(filenameParent), "%s/%s", "/storage/test_jffs2", "testParent");
(void)sprintf_s(filenameChild, sizeof(filenameChild), "%s/%s", filenameParent, "testChild");
ret = mkdir(filenameParent, 0222); // mode 0222
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
SetReadAndSearch();
......@@ -522,7 +522,6 @@ EXIT:
return 1;
}
void ItTestDac001(void)
{
TEST_ADD_CASE("IT_SEC_DAC_001", testcase, TEST_VFS, TEST_JFFS, TEST_LEVEL0, TEST_FUNCTION);
......
......@@ -1003,7 +1003,6 @@ public:
* @tc.name: IO_TEST_FACCESSAT_001
* @tc.desc: normal tests for faccessat
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, IO_TEST_FACCESSAT_001, TestSize.Level0)
{
......@@ -1014,7 +1013,6 @@ HWTEST_F(VfsJffsTest, IO_TEST_FACCESSAT_001, TestSize.Level0)
* @tc.name: IO_TEST_FACCESSAT_002
* @tc.desc: innormal tests for faccessat
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, IO_TEST_FACCESSAT_002, TestSize.Level0)
{
......@@ -1025,7 +1023,6 @@ HWTEST_F(VfsJffsTest, IO_TEST_FACCESSAT_002, TestSize.Level0)
* @tc.name: IO_TEST_FSTATFS_001
* @tc.desc: normal tests for fstatfs
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, IO_TEST_FSTATFS_001, TestSize.Level0)
{
......@@ -1036,7 +1033,6 @@ HWTEST_F(VfsJffsTest, IO_TEST_FSTATFS_001, TestSize.Level0)
* @tc.name: IO_TEST_FSTATFS_002
* @tc.desc: innormal tests for fstatfs
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, IO_TEST_FSTATFS_002, TestSize.Level0)
{
......@@ -1047,7 +1043,6 @@ HWTEST_F(VfsJffsTest, IO_TEST_FSTATFS_002, TestSize.Level0)
* @tc.name: IO_TEST_FSTATAT_001
* @tc.desc: normal tests for fstatat
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, IO_TEST_FSTATAT_001, TestSize.Level0)
{
......@@ -1058,7 +1053,6 @@ HWTEST_F(VfsJffsTest, IO_TEST_FSTATAT_001, TestSize.Level0)
* @tc.name: IO_TEST_FSTATAT_002
* @tc.desc: innormal tests for fstatat
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, IO_TEST_FSTATAT_002, TestSize.Level0)
{
......@@ -1069,7 +1063,6 @@ HWTEST_F(VfsJffsTest, IO_TEST_FSTATAT_002, TestSize.Level0)
* @tc.name: ItTestFsJffs001
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs001, TestSize.Level0)
{
......@@ -1080,7 +1073,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs001, TestSize.Level0)
* @tc.name: ItTestFsJffs002
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs002, TestSize.Level0)
{
......@@ -1091,7 +1083,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs002, TestSize.Level0)
* @tc.name: ItTestFsJffs003
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs003, TestSize.Level0)
{
......@@ -1102,7 +1093,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs003, TestSize.Level0)
* @tc.name: ItTestFsJffs004
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs004, TestSize.Level0)
{
......@@ -1113,7 +1103,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs004, TestSize.Level0)
* @tc.name: ItTestFsJffs100
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs100, TestSize.Level0)
{
......@@ -1124,7 +1113,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs100, TestSize.Level0)
* @tc.name: ItTestFsJffs101
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs101, TestSize.Level0)
{
......@@ -1135,7 +1123,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs101, TestSize.Level0)
* @tc.name: ItTestFsJffs102
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs102, TestSize.Level0)
{
......@@ -1146,7 +1133,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs102, TestSize.Level0)
* @tc.name: ItTestFsJffs103
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs103, TestSize.Level0)
{
......@@ -1157,7 +1143,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs103, TestSize.Level0)
* @tc.name: ItTestFsJffs106
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs106, TestSize.Level0)
{
......@@ -1168,7 +1153,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs106, TestSize.Level0)
* @tc.name: ItTestFsJffs112
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs112, TestSize.Level0)
{
......@@ -1179,7 +1163,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs112, TestSize.Level0)
* @tc.name: ItTestFsJffs113
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestFsJffs113, TestSize.Level0)
{
......@@ -1190,7 +1173,6 @@ HWTEST_F(VfsJffsTest, ItTestFsJffs113, TestSize.Level0)
* @tc.name: IT_JFFS_002
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs002, TestSize.Level0)
{
......@@ -1201,7 +1183,6 @@ HWTEST_F(VfsJffsTest, ItJffs002, TestSize.Level0)
* @tc.name: IT_JFFS_004
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs004, TestSize.Level0)
{
......@@ -1212,7 +1193,6 @@ HWTEST_F(VfsJffsTest, ItJffs004, TestSize.Level0)
* @tc.name: IT_JFFS_007
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs007, TestSize.Level0)
{
......@@ -1223,7 +1203,6 @@ HWTEST_F(VfsJffsTest, ItJffs007, TestSize.Level0)
* @tc.name: IT_JFFS_009
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs009, TestSize.Level0)
{
......@@ -1234,7 +1213,6 @@ HWTEST_F(VfsJffsTest, ItJffs009, TestSize.Level0)
* @tc.name: IT_JFFS_010
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs010, TestSize.Level0)
{
......@@ -1245,7 +1223,6 @@ HWTEST_F(VfsJffsTest, ItJffs010, TestSize.Level0)
* @tc.name: IT_JFFS_011
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs011, TestSize.Level0)
{
......@@ -1256,7 +1233,6 @@ HWTEST_F(VfsJffsTest, ItJffs011, TestSize.Level0)
* @tc.name: IT_JFFS_012
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs012, TestSize.Level0)
{
......@@ -1267,7 +1243,6 @@ HWTEST_F(VfsJffsTest, ItJffs012, TestSize.Level0)
* @tc.name: IT_JFFS_013
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs013, TestSize.Level0)
{
......@@ -1278,7 +1253,6 @@ HWTEST_F(VfsJffsTest, ItJffs013, TestSize.Level0)
* @tc.name: IT_JFFS_015
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs015, TestSize.Level0)
{
......@@ -1289,7 +1263,6 @@ HWTEST_F(VfsJffsTest, ItJffs015, TestSize.Level0)
* @tc.name: IT_JFFS_017
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs017, TestSize.Level0)
{
......@@ -1300,7 +1273,6 @@ HWTEST_F(VfsJffsTest, ItJffs017, TestSize.Level0)
* @tc.name: IT_JFFS_018
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs018, TestSize.Level0)
{
......@@ -1311,7 +1283,6 @@ HWTEST_F(VfsJffsTest, ItJffs018, TestSize.Level0)
* @tc.name: IT_JFFS_019
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs019, TestSize.Level0)
{
......@@ -1322,7 +1293,6 @@ HWTEST_F(VfsJffsTest, ItJffs019, TestSize.Level0)
* @tc.name: IT_JFFS_022
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs022, TestSize.Level0)
{
......@@ -1333,7 +1303,6 @@ HWTEST_F(VfsJffsTest, ItJffs022, TestSize.Level0)
* @tc.name: IT_JFFS_025
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs025, TestSize.Level0)
{
......@@ -1344,7 +1313,6 @@ HWTEST_F(VfsJffsTest, ItJffs025, TestSize.Level0)
* @tc.name: IT_JFFS_026
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs026, TestSize.Level0)
{
......@@ -1355,7 +1323,6 @@ HWTEST_F(VfsJffsTest, ItJffs026, TestSize.Level0)
* @tc.name: IT_JFFS_027
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs027, TestSize.Level0)
{
......@@ -1366,7 +1333,6 @@ HWTEST_F(VfsJffsTest, ItJffs027, TestSize.Level0)
* @tc.name: IT_JFFS_030
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs030, TestSize.Level0)
{
......@@ -1377,7 +1343,6 @@ HWTEST_F(VfsJffsTest, ItJffs030, TestSize.Level0)
* @tc.name: IT_JFFS_032
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs032, TestSize.Level0)
{
......@@ -1388,7 +1353,6 @@ HWTEST_F(VfsJffsTest, ItJffs032, TestSize.Level0)
* @tc.name: IT_JFFS_033
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs033, TestSize.Level0)
{
......@@ -1399,7 +1363,6 @@ HWTEST_F(VfsJffsTest, ItJffs033, TestSize.Level0)
* @tc.name: IT_JFFS_034
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs034, TestSize.Level0)
{
......@@ -1410,7 +1373,6 @@ HWTEST_F(VfsJffsTest, ItJffs034, TestSize.Level0)
* @tc.name: IT_JFFS_035
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs035, TestSize.Level0)
{
......@@ -1421,7 +1383,6 @@ HWTEST_F(VfsJffsTest, ItJffs035, TestSize.Level0)
* @tc.name: IT_JFFS_036
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs036, TestSize.Level0)
{
......@@ -1432,7 +1393,6 @@ HWTEST_F(VfsJffsTest, ItJffs036, TestSize.Level0)
* @tc.name: IT_JFFS_037
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs037, TestSize.Level0)
{
......@@ -1443,7 +1403,6 @@ HWTEST_F(VfsJffsTest, ItJffs037, TestSize.Level0)
* @tc.name: IT_JFFS_038
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs038, TestSize.Level0)
{
......@@ -1454,7 +1413,6 @@ HWTEST_F(VfsJffsTest, ItJffs038, TestSize.Level0)
* @tc.name: IT_JFFS_040
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs040, TestSize.Level0)
{
......@@ -1465,7 +1423,6 @@ HWTEST_F(VfsJffsTest, ItJffs040, TestSize.Level0)
* @tc.name: IT_JFFS_041
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs041, TestSize.Level0)
{
......@@ -1476,7 +1433,6 @@ HWTEST_F(VfsJffsTest, ItJffs041, TestSize.Level0)
* @tc.name: IT_JFFS_042
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs042, TestSize.Level0)
{
......@@ -1487,7 +1443,6 @@ HWTEST_F(VfsJffsTest, ItJffs042, TestSize.Level0)
* @tc.name: IT_JFFS_021
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs021, TestSize.Level0)
{
......@@ -1498,7 +1453,6 @@ HWTEST_F(VfsJffsTest, ItJffs021, TestSize.Level0)
* @tc.name: IT_JFFS_043
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs043, TestSize.Level0)
{
......@@ -1509,7 +1463,6 @@ HWTEST_F(VfsJffsTest, ItJffs043, TestSize.Level0)
* @tc.name: IT_JFFS_044
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItJffs044, TestSize.Level0)
{
......@@ -1521,7 +1474,6 @@ HWTEST_F(VfsJffsTest, ItJffs044, TestSize.Level0)
* @tc.name: ItFsJffs004
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs004, TestSize.Level0)
{
......@@ -1532,7 +1484,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs004, TestSize.Level0)
* @tc.name: ItFsJffs006
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs006, TestSize.Level0)
{
......@@ -1543,7 +1494,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs006, TestSize.Level0)
* @tc.name: ItFsJffs008
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs008, TestSize.Level0)
{
......@@ -1554,7 +1504,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs008, TestSize.Level0)
* @tc.name: ItFsJffs009
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs009, TestSize.Level0)
{
......@@ -1565,7 +1514,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs009, TestSize.Level0)
* @tc.name: ItFsJffs011
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs011, TestSize.Level0)
{
......@@ -1576,7 +1524,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs011, TestSize.Level0)
* @tc.name: ItFsJffs012
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs012, TestSize.Level0)
{
......@@ -1587,7 +1534,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs012, TestSize.Level0)
* @tc.name: ItFsJffs013
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs013, TestSize.Level0)
{
......@@ -1598,7 +1544,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs013, TestSize.Level0)
* @tc.name: ItFsJffs014
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs014, TestSize.Level0)
{
......@@ -1609,7 +1554,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs014, TestSize.Level0)
* @tc.name: ItFsJffs015
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs015, TestSize.Level0)
{
......@@ -1620,7 +1564,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs015, TestSize.Level0)
* @tc.name: ItFsJffs016
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs016, TestSize.Level0)
{
......@@ -1631,7 +1574,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs016, TestSize.Level0)
* @tc.name: ItFsJffs017
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs017, TestSize.Level0)
{
......@@ -1642,7 +1584,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs017, TestSize.Level0)
* @tc.name: ItFsJffs018
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs018, TestSize.Level0)
{
......@@ -1653,7 +1594,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs018, TestSize.Level0)
* @tc.name: ItFsJffs019
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs019, TestSize.Level0)
{
......@@ -1664,7 +1604,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs019, TestSize.Level0)
* @tc.name: ItFsJffs020
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs020, TestSize.Level0)
{
......@@ -1675,7 +1614,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs020, TestSize.Level0)
* @tc.name: ItFsJffs023
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs023, TestSize.Level0)
{
......@@ -1686,7 +1624,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs023, TestSize.Level0)
* @tc.name: ItFsJffs024
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs024, TestSize.Level0)
{
......@@ -1697,7 +1634,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs024, TestSize.Level0)
* @tc.name: ItFsJffs025
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs025, TestSize.Level0)
{
......@@ -1708,7 +1644,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs025, TestSize.Level0)
* @tc.name: ItFsJffs029
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs029, TestSize.Level0)
{
......@@ -1719,7 +1654,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs029, TestSize.Level0)
* @tc.name: ItFsJffs030
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs030, TestSize.Level0)
{
......@@ -1730,7 +1664,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs030, TestSize.Level0)
* @tc.name: ItFsJffs031
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs031, TestSize.Level0)
{
......@@ -1741,7 +1674,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs031, TestSize.Level0)
* @tc.name: ItFsJffs032
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs032, TestSize.Level0)
{
......@@ -1752,7 +1684,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs032, TestSize.Level0)
* @tc.name: ItFsJffs033
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs033, TestSize.Level0)
{
......@@ -1763,7 +1694,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs033, TestSize.Level0)
* @tc.name: ItFsJffs037
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs037, TestSize.Level0)
{
......@@ -1774,7 +1704,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs037, TestSize.Level0)
* @tc.name: ItFsJffs038
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs038, TestSize.Level0)
{
......@@ -1785,7 +1714,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs038, TestSize.Level0)
* @tc.name: ItFsJffs039
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs039, TestSize.Level0)
{
......@@ -1796,7 +1724,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs039, TestSize.Level0)
* @tc.name: ItFsJffs040
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs040, TestSize.Level0)
{
......@@ -1807,7 +1734,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs040, TestSize.Level0)
* @tc.name: ItFsJffs041
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs041, TestSize.Level0)
{
......@@ -1818,7 +1744,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs041, TestSize.Level0)
* @tc.name: ItFsJffs042
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs042, TestSize.Level0)
{
......@@ -1829,7 +1754,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs042, TestSize.Level0)
* @tc.name: ItFsJffs043
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs043, TestSize.Level0)
{
......@@ -1840,7 +1764,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs043, TestSize.Level0)
* @tc.name: ItFsJffs044
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs044, TestSize.Level0)
{
......@@ -1851,7 +1774,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs044, TestSize.Level0)
* @tc.name: ItFsJffs045
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs045, TestSize.Level0)
{
......@@ -1862,7 +1784,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs045, TestSize.Level0)
* @tc.name: ItFsJffs046
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs046, TestSize.Level0)
{
......@@ -1873,7 +1794,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs046, TestSize.Level0)
* @tc.name: ItFsJffs048
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs048, TestSize.Level0)
{
......@@ -1884,7 +1804,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs048, TestSize.Level0)
* @tc.name: ItFsJffs049
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs049, TestSize.Level0)
{
......@@ -1895,7 +1814,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs049, TestSize.Level0)
* @tc.name: ItFsJffs050
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs050, TestSize.Level0)
{
......@@ -1906,7 +1824,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs050, TestSize.Level0)
* @tc.name: ItFsJffs053
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs053, TestSize.Level0)
{
......@@ -1917,7 +1834,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs053, TestSize.Level0)
* @tc.name: ItFsJffs055
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs055, TestSize.Level0)
{
......@@ -1928,7 +1844,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs055, TestSize.Level0)
* @tc.name: ItFsJffs056
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs056, TestSize.Level0)
{
......@@ -1939,7 +1854,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs056, TestSize.Level0)
* @tc.name: ItFsJffs057
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs057, TestSize.Level0)
{
......@@ -1950,7 +1864,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs057, TestSize.Level0)
* @tc.name: ItFsJffs059
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs059, TestSize.Level0)
{
......@@ -1961,7 +1874,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs059, TestSize.Level0)
* @tc.name: ItFsJffs060
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs060, TestSize.Level0)
{
......@@ -1972,7 +1884,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs060, TestSize.Level0)
* @tc.name: ItFsJffs061
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs061, TestSize.Level0)
{
......@@ -1983,7 +1894,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs061, TestSize.Level0)
* @tc.name: ItFsJffs062
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs062, TestSize.Level0)
{
......@@ -1994,7 +1904,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs062, TestSize.Level0)
* @tc.name: ItFsJffs063
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs063, TestSize.Level0)
{
......@@ -2005,7 +1914,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs063, TestSize.Level0)
* @tc.name: ItFsJffs064
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs064, TestSize.Level0)
{
......@@ -2016,7 +1924,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs064, TestSize.Level0)
* @tc.name: ItFsJffs066
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs066, TestSize.Level0)
{
......@@ -2027,7 +1934,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs066, TestSize.Level0)
* @tc.name: ItFsJffs068
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs068, TestSize.Level0)
{
......@@ -2038,7 +1944,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs068, TestSize.Level0)
* @tc.name: ItFsJffs069
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs069, TestSize.Level0)
{
......@@ -2049,7 +1954,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs069, TestSize.Level0)
* @tc.name: ItFsJffs070
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs070, TestSize.Level0)
{
......@@ -2060,7 +1964,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs070, TestSize.Level0)
* @tc.name: ItFsJffs077
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs077, TestSize.Level0)
{
......@@ -2071,7 +1974,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs077, TestSize.Level0)
* @tc.name: ItFsJffs078
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs078, TestSize.Level0)
{
......@@ -2082,7 +1984,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs078, TestSize.Level0)
* @tc.name: ItFsJffs079
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs079, TestSize.Level0)
{
......@@ -2093,7 +1994,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs079, TestSize.Level0)
* @tc.name: ItFsJffs081
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs081, TestSize.Level0)
{
......@@ -2104,7 +2004,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs081, TestSize.Level0)
* @tc.name: ItFsJffs082
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs082, TestSize.Level0)
{
......@@ -2115,7 +2014,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs082, TestSize.Level0)
* @tc.name: ItFsJffs083
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs083, TestSize.Level0)
{
......@@ -2126,7 +2024,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs083, TestSize.Level0)
* @tc.name: ItFsJffs084
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs084, TestSize.Level0)
{
......@@ -2137,7 +2034,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs084, TestSize.Level0)
* @tc.name: ItFsJffs085
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs085, TestSize.Level0)
{
......@@ -2148,7 +2044,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs085, TestSize.Level0)
* @tc.name: ItFsJffs088
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs088, TestSize.Level0)
{
......@@ -2159,7 +2054,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs088, TestSize.Level0)
* @tc.name: ItFsJffs090
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs090, TestSize.Level0)
{
......@@ -2170,7 +2064,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs090, TestSize.Level0)
* @tc.name: ItFsJffs093
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs093, TestSize.Level0)
{
......@@ -2181,7 +2074,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs093, TestSize.Level0)
* @tc.name: ItFsJffs096
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs096, TestSize.Level0)
{
......@@ -2192,7 +2084,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs096, TestSize.Level0)
* @tc.name: ItFsJffs099
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs099, TestSize.Level0)
{
......@@ -2203,7 +2094,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs099, TestSize.Level0)
* @tc.name: ItFsJffs100
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs100, TestSize.Level0)
{
......@@ -2214,7 +2104,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs100, TestSize.Level0)
* @tc.name: ItFsJffs104
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs104, TestSize.Level0)
{
......@@ -2225,7 +2114,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs104, TestSize.Level0)
* @tc.name: ItFsJffs116
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs116, TestSize.Level0)
{
......@@ -2236,7 +2124,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs116, TestSize.Level0)
* @tc.name: ItFsJffs117
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs117, TestSize.Level0)
{
......@@ -2247,7 +2134,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs117, TestSize.Level0)
* @tc.name: ItFsJffs118
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs118, TestSize.Level0)
{
......@@ -2258,7 +2144,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs118, TestSize.Level0)
* @tc.name: ItFsJffs119
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs119, TestSize.Level0)
{
......@@ -2269,7 +2154,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs119, TestSize.Level0)
* @tc.name: ItFsJffs120
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs120, TestSize.Level0)
{
......@@ -2280,7 +2164,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs120, TestSize.Level0)
* @tc.name: ItFsJffs121
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs121, TestSize.Level0)
{
......@@ -2291,7 +2174,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs121, TestSize.Level0)
* @tc.name: ItFsJffs123
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs123, TestSize.Level0)
{
......@@ -2302,7 +2184,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs123, TestSize.Level0)
* @tc.name: ItFsJffs126
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs126, TestSize.Level0)
{
......@@ -2313,7 +2194,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs126, TestSize.Level0)
* @tc.name: ItFsJffs127
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs127, TestSize.Level0)
{
......@@ -2324,7 +2204,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs127, TestSize.Level0)
* @tc.name: ItFsJffs128
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs128, TestSize.Level0)
{
......@@ -2335,7 +2214,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs128, TestSize.Level0)
* @tc.name: ItFsJffs129
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs129, TestSize.Level0)
{
......@@ -2346,7 +2224,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs129, TestSize.Level0)
* @tc.name: ItFsJffs130
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs130, TestSize.Level0)
{
......@@ -2357,7 +2234,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs130, TestSize.Level0)
* @tc.name: ItFsJffs131
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs131, TestSize.Level0)
{
......@@ -2368,7 +2244,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs131, TestSize.Level0)
* @tc.name: ItFsJffs132
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs132, TestSize.Level0)
{
......@@ -2379,7 +2254,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs132, TestSize.Level0)
* @tc.name: ItFsJffs133
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs133, TestSize.Level0)
{
......@@ -2390,7 +2264,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs133, TestSize.Level0)
* @tc.name: ItFsJffs134
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs134, TestSize.Level0)
{
......@@ -2401,7 +2274,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs134, TestSize.Level0)
* @tc.name: ItFsJffs135
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs135, TestSize.Level0)
{
......@@ -2412,7 +2284,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs135, TestSize.Level0)
* @tc.name: ItFsJffs136
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs136, TestSize.Level0)
{
......@@ -2423,7 +2294,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs136, TestSize.Level0)
* @tc.name: ItFsJffs137
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs137, TestSize.Level0)
{
......@@ -2434,7 +2304,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs137, TestSize.Level0)
* @tc.name: ItFsJffs138
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs138, TestSize.Level0)
{
......@@ -2445,7 +2314,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs138, TestSize.Level0)
* @tc.name: ItFsJffs139
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs139, TestSize.Level0)
{
......@@ -2456,7 +2324,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs139, TestSize.Level0)
* @tc.name: ItFsJffs140
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs140, TestSize.Level0)
{
......@@ -2467,7 +2334,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs140, TestSize.Level0)
* @tc.name: ItFsJffs141
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs141, TestSize.Level0)
{
......@@ -2478,7 +2344,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs141, TestSize.Level0)
* @tc.name: ItFsJffs142
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs142, TestSize.Level0)
{
......@@ -2489,7 +2354,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs142, TestSize.Level0)
* @tc.name: ItFsJffs143
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs143, TestSize.Level0)
{
......@@ -2500,7 +2364,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs143, TestSize.Level0)
* @tc.name: ItFsJffs144
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs144, TestSize.Level0)
{
......@@ -2511,7 +2374,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs144, TestSize.Level0)
* @tc.name: ItFsJffs145
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs145, TestSize.Level0)
{
......@@ -2522,7 +2384,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs145, TestSize.Level0)
* @tc.name: ItFsJffs146
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs146, TestSize.Level0)
{
......@@ -2533,7 +2394,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs146, TestSize.Level0)
* @tc.name: ItFsJffs147
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs147, TestSize.Level0)
{
......@@ -2544,7 +2404,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs147, TestSize.Level0)
* @tc.name: ItFsJffs148
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs148, TestSize.Level0)
{
......@@ -2555,7 +2414,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs148, TestSize.Level0)
* @tc.name: ItFsJffs149
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs149, TestSize.Level0)
{
......@@ -2566,7 +2424,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs149, TestSize.Level0)
* @tc.name: ItFsJffs150
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs150, TestSize.Level0)
{
......@@ -2577,7 +2434,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs150, TestSize.Level0)
* @tc.name: ItFsJffs151
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs151, TestSize.Level0)
{
......@@ -2588,7 +2444,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs151, TestSize.Level0)
* @tc.name: ItFsJffs152
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs152, TestSize.Level0)
{
......@@ -2599,7 +2454,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs152, TestSize.Level0)
* @tc.name: ItFsJffs153
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs153, TestSize.Level0)
{
......@@ -2610,7 +2464,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs153, TestSize.Level0)
* @tc.name: ItFsJffs154
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs154, TestSize.Level0)
{
......@@ -2621,7 +2474,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs154, TestSize.Level0)
* @tc.name: ItFsJffs155
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs155, TestSize.Level0)
{
......@@ -2632,7 +2484,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs155, TestSize.Level0)
* @tc.name: ItFsJffs156
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs156, TestSize.Level0)
{
......@@ -2643,7 +2494,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs156, TestSize.Level0)
* @tc.name: ItFsJffs157
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs157, TestSize.Level0)
{
......@@ -2654,7 +2504,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs157, TestSize.Level0)
* @tc.name: ItFsJffs158
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs158, TestSize.Level0)
{
......@@ -2665,7 +2514,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs158, TestSize.Level0)
* @tc.name: ItFsJffs159
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs159, TestSize.Level0)
{
......@@ -2676,7 +2524,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs159, TestSize.Level0)
* @tc.name: ItFsJffs160
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs160, TestSize.Level0)
{
......@@ -2687,7 +2534,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs160, TestSize.Level0)
* @tc.name: ItFsJffs161
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs161, TestSize.Level0)
{
......@@ -2698,7 +2544,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs161, TestSize.Level0)
* @tc.name: ItFsJffs162
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs162, TestSize.Level0)
{
......@@ -2709,7 +2554,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs162, TestSize.Level0)
* @tc.name: ItFsJffs163
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs163, TestSize.Level0)
{
......@@ -2720,7 +2564,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs163, TestSize.Level0)
* @tc.name: ItFsJffs164
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs164, TestSize.Level0)
{
......@@ -2731,7 +2574,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs164, TestSize.Level0)
* @tc.name: ItFsJffs165
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs165, TestSize.Level0)
{
......@@ -2742,7 +2584,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs165, TestSize.Level0)
* @tc.name: ItFsJffs166
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs166, TestSize.Level0)
{
......@@ -2753,7 +2594,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs166, TestSize.Level0)
* @tc.name: ItFsJffs167
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs167, TestSize.Level0)
{
......@@ -2764,7 +2604,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs167, TestSize.Level0)
* @tc.name: ItFsJffs168
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs168, TestSize.Level0)
{
......@@ -2775,7 +2614,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs168, TestSize.Level0)
* @tc.name: ItFsJffs169
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs169, TestSize.Level0)
{
......@@ -2786,7 +2624,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs169, TestSize.Level0)
* @tc.name: ItFsJffs170
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs170, TestSize.Level0)
{
......@@ -2797,7 +2634,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs170, TestSize.Level0)
* @tc.name: ItFsJffs171
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs171, TestSize.Level0)
{
......@@ -2808,7 +2644,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs171, TestSize.Level0)
* @tc.name: ItFsJffs172
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs172, TestSize.Level0)
{
......@@ -2819,7 +2654,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs172, TestSize.Level0)
* @tc.name: ItFsJffs173
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs173, TestSize.Level0)
{
......@@ -2830,7 +2664,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs173, TestSize.Level0)
* @tc.name: ItFsJffs175
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs175, TestSize.Level0)
{
......@@ -2841,7 +2674,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs175, TestSize.Level0)
* @tc.name: ItFsJffs176
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs176, TestSize.Level0)
{
......@@ -2852,7 +2684,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs176, TestSize.Level0)
* @tc.name: ItFsJffs177
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs177, TestSize.Level0)
{
......@@ -2863,7 +2694,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs177, TestSize.Level0)
* @tc.name: ItFsJffs178
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs178, TestSize.Level0)
{
......@@ -2874,7 +2704,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs178, TestSize.Level0)
* @tc.name: ItFsJffs179
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs179, TestSize.Level0)
{
......@@ -2885,7 +2714,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs179, TestSize.Level0)
* @tc.name: ItFsJffs180
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs180, TestSize.Level0)
{
......@@ -2896,7 +2724,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs180, TestSize.Level0)
* @tc.name: ItFsJffs182
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs182, TestSize.Level0)
{
......@@ -2907,7 +2734,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs182, TestSize.Level0)
* @tc.name: ItFsJffs183
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs183, TestSize.Level0)
{
......@@ -2918,7 +2744,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs183, TestSize.Level0)
* @tc.name: ItFsJffs184
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs184, TestSize.Level0)
{
......@@ -2929,7 +2754,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs184, TestSize.Level0)
* @tc.name: ItFsJffs185
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs185, TestSize.Level0)
{
......@@ -2940,7 +2764,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs185, TestSize.Level0)
* @tc.name: ItFsJffs187
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs187, TestSize.Level0)
{
......@@ -2951,7 +2774,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs187, TestSize.Level0)
* @tc.name: ItFsJffs188
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs188, TestSize.Level0)
{
......@@ -2962,7 +2784,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs188, TestSize.Level0)
* @tc.name: ItFsJffs189
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs189, TestSize.Level0)
{
......@@ -2973,7 +2794,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs189, TestSize.Level0)
* @tc.name: ItFsJffs190
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs190, TestSize.Level0)
{
......@@ -2984,7 +2804,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs190, TestSize.Level0)
* @tc.name: ItFsJffs191
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs191, TestSize.Level0)
{
......@@ -2995,7 +2814,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs191, TestSize.Level0)
* @tc.name: ItFsJffs192
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs192, TestSize.Level0)
{
......@@ -3006,7 +2824,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs192, TestSize.Level0)
* @tc.name: ItFsJffs193
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs193, TestSize.Level0)
{
......@@ -3017,7 +2834,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs193, TestSize.Level0)
* @tc.name: ItFsJffs194
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs194, TestSize.Level0)
{
......@@ -3028,7 +2844,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs194, TestSize.Level0)
* @tc.name: ItFsJffs195
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs195, TestSize.Level0)
{
......@@ -3039,7 +2854,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs195, TestSize.Level0)
* @tc.name: ItFsJffs196
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs196, TestSize.Level0)
{
......@@ -3050,7 +2864,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs196, TestSize.Level0)
* @tc.name: ItFsJffs197
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs197, TestSize.Level0)
{
......@@ -3061,7 +2874,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs197, TestSize.Level0)
* @tc.name: ItFsJffs198
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs198, TestSize.Level0)
{
......@@ -3072,7 +2884,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs198, TestSize.Level0)
* @tc.name: ItFsJffs199
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs199, TestSize.Level0)
{
......@@ -3083,7 +2894,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs199, TestSize.Level0)
* @tc.name: ItFsJffs200
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs200, TestSize.Level0)
{
......@@ -3094,7 +2904,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs200, TestSize.Level0)
* @tc.name: ItFsJffs202
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs202, TestSize.Level0)
{
......@@ -3105,7 +2914,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs202, TestSize.Level0)
* @tc.name: ItFsJffs203
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs203, TestSize.Level0)
{
......@@ -3116,7 +2924,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs203, TestSize.Level0)
* @tc.name: ItFsJffs204
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs204, TestSize.Level0)
{
......@@ -3127,7 +2934,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs204, TestSize.Level0)
* @tc.name: ItFsJffs205
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs205, TestSize.Level0)
{
......@@ -3138,7 +2944,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs205, TestSize.Level0)
* @tc.name: ItFsJffs206
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs206, TestSize.Level0)
{
......@@ -3149,7 +2954,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs206, TestSize.Level0)
* @tc.name: ItFsJffs207
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs207, TestSize.Level0)
{
......@@ -3160,7 +2964,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs207, TestSize.Level0)
* @tc.name: ItFsJffs208
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs208, TestSize.Level0)
{
......@@ -3171,7 +2974,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs208, TestSize.Level0)
* @tc.name: ItFsJffs209
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs209, TestSize.Level0)
{
......@@ -3182,7 +2984,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs209, TestSize.Level0)
* @tc.name: ItFsJffs210
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs210, TestSize.Level0)
{
......@@ -3193,7 +2994,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs210, TestSize.Level0)
* @tc.name: ItFsJffs211
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs211, TestSize.Level0)
{
......@@ -3204,7 +3004,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs211, TestSize.Level0)
* @tc.name: ItFsJffs212
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs212, TestSize.Level0)
{
......@@ -3215,7 +3014,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs212, TestSize.Level0)
* @tc.name: ItFsJffs213
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs213, TestSize.Level0)
{
......@@ -3226,7 +3024,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs213, TestSize.Level0)
* @tc.name: ItFsJffs214
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs214, TestSize.Level0)
{
......@@ -3237,7 +3034,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs214, TestSize.Level0)
* @tc.name: ItFsJffs215
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs215, TestSize.Level0)
{
......@@ -3248,7 +3044,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs215, TestSize.Level0)
* @tc.name: ItFsJffs216
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs216, TestSize.Level0)
{
......@@ -3259,7 +3054,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs216, TestSize.Level0)
* @tc.name: ItFsJffs217
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs217, TestSize.Level0)
{
......@@ -3270,7 +3064,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs217, TestSize.Level0)
* @tc.name: ItFsJffs218
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs218, TestSize.Level0)
{
......@@ -3281,7 +3074,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs218, TestSize.Level0)
* @tc.name: ItFsJffs219
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs219, TestSize.Level0)
{
......@@ -3292,7 +3084,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs219, TestSize.Level0)
* @tc.name: ItFsJffs220
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs220, TestSize.Level0)
{
......@@ -3303,7 +3094,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs220, TestSize.Level0)
* @tc.name: ItFsJffs221
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs221, TestSize.Level0)
{
......@@ -3314,7 +3104,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs221, TestSize.Level0)
* @tc.name: ItFsJffs222
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs222, TestSize.Level0)
{
......@@ -3325,7 +3114,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs222, TestSize.Level0)
* @tc.name: ItFsJffs223
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs223, TestSize.Level0)
{
......@@ -3336,7 +3124,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs223, TestSize.Level0)
* @tc.name: ItFsJffs224
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs224, TestSize.Level0)
{
......@@ -3347,7 +3134,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs224, TestSize.Level0)
* @tc.name: ItFsJffs225
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs225, TestSize.Level0)
{
......@@ -3358,7 +3144,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs225, TestSize.Level0)
* @tc.name: ItFsJffs226
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs226, TestSize.Level0)
{
......@@ -3369,7 +3154,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs226, TestSize.Level0)
* @tc.name: ItFsJffs227
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs227, TestSize.Level0)
{
......@@ -3380,7 +3164,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs227, TestSize.Level0)
* @tc.name: ItFsJffs228
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs228, TestSize.Level0)
{
......@@ -3391,7 +3174,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs228, TestSize.Level0)
* @tc.name: ItFsJffs229
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs229, TestSize.Level0)
{
......@@ -3402,7 +3184,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs229, TestSize.Level0)
* @tc.name: ItFsJffs230
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs230, TestSize.Level0)
{
......@@ -3413,7 +3194,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs230, TestSize.Level0)
* @tc.name: ItFsJffs231
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs231, TestSize.Level0)
{
......@@ -3424,7 +3204,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs231, TestSize.Level0)
* @tc.name: ItFsJffs232
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs232, TestSize.Level0)
{
......@@ -3435,7 +3214,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs232, TestSize.Level0)
* @tc.name: ItFsJffs233
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs233, TestSize.Level0)
{
......@@ -3446,7 +3224,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs233, TestSize.Level0)
* @tc.name: ItFsJffs234
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs234, TestSize.Level0)
{
......@@ -3457,7 +3234,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs234, TestSize.Level0)
* @tc.name: ItFsJffs235
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs235, TestSize.Level0)
{
......@@ -3468,7 +3244,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs235, TestSize.Level0)
* @tc.name: ItFsJffs236
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs236, TestSize.Level0)
{
......@@ -3479,7 +3254,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs236, TestSize.Level0)
* @tc.name: ItFsJffs237
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs237, TestSize.Level0)
{
......@@ -3490,7 +3264,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs237, TestSize.Level0)
* @tc.name: ItFsJffs238
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs238, TestSize.Level0)
{
......@@ -3501,7 +3274,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs238, TestSize.Level0)
* @tc.name: ItFsJffs239
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs239, TestSize.Level0)
{
......@@ -3512,7 +3284,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs239, TestSize.Level0)
* @tc.name: ItFsJffs240
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs240, TestSize.Level0)
{
......@@ -3523,7 +3294,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs240, TestSize.Level0)
* @tc.name: ItFsJffs241
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs241, TestSize.Level0)
{
......@@ -3534,7 +3304,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs241, TestSize.Level0)
* @tc.name: ItFsJffs242
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs242, TestSize.Level0)
{
......@@ -3545,7 +3314,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs242, TestSize.Level0)
* @tc.name: ItFsJffs243
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs243, TestSize.Level0)
{
......@@ -3556,7 +3324,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs243, TestSize.Level0)
* @tc.name: ItFsJffs244
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs244, TestSize.Level0)
{
......@@ -3567,7 +3334,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs244, TestSize.Level0)
* @tc.name: ItFsJffs245
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs245, TestSize.Level0)
{
......@@ -3578,7 +3344,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs245, TestSize.Level0)
* @tc.name: ItFsJffs246
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs246, TestSize.Level0)
{
......@@ -3589,7 +3354,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs246, TestSize.Level0)
* @tc.name: ItFsJffs247
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs247, TestSize.Level0)
{
......@@ -3600,7 +3364,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs247, TestSize.Level0)
* @tc.name: ItFsJffs248
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs248, TestSize.Level0)
{
......@@ -3611,7 +3374,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs248, TestSize.Level0)
* @tc.name: ItFsJffs249
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs249, TestSize.Level0)
{
......@@ -3622,7 +3384,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs249, TestSize.Level0)
* @tc.name: ItFsJffs250
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs250, TestSize.Level0)
{
......@@ -3633,7 +3394,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs250, TestSize.Level0)
* @tc.name: ItFsJffs251
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs251, TestSize.Level0)
{
......@@ -3644,7 +3404,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs251, TestSize.Level0)
* @tc.name: ItFsJffs252
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs252, TestSize.Level0)
{
......@@ -3655,7 +3414,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs252, TestSize.Level0)
* @tc.name: ItFsJffs253
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs253, TestSize.Level0)
{
......@@ -3666,7 +3424,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs253, TestSize.Level0)
* @tc.name: ItFsJffs254
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs254, TestSize.Level0)
{
......@@ -3677,7 +3434,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs254, TestSize.Level0)
* @tc.name: ItFsJffs255
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs255, TestSize.Level0)
{
......@@ -3688,7 +3444,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs255, TestSize.Level0)
* @tc.name: ItFsJffs256
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs256, TestSize.Level0)
{
......@@ -3699,7 +3454,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs256, TestSize.Level0)
* @tc.name: ItFsJffs257
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs257, TestSize.Level0)
{
......@@ -3710,7 +3464,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs257, TestSize.Level0)
* @tc.name: ItFsJffs258
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs258, TestSize.Level0)
{
......@@ -3721,7 +3474,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs258, TestSize.Level0)
* @tc.name: ItFsJffs259
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs259, TestSize.Level0)
{
......@@ -3732,7 +3484,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs259, TestSize.Level0)
* @tc.name: ItFsJffs260
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs260, TestSize.Level0)
{
......@@ -3743,7 +3494,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs260, TestSize.Level0)
* @tc.name: ItFsJffs261
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs261, TestSize.Level0)
{
......@@ -3754,7 +3504,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs261, TestSize.Level0)
* @tc.name: ItFsJffs262
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs262, TestSize.Level0)
{
......@@ -3765,7 +3514,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs262, TestSize.Level0)
* @tc.name: ItFsJffs263
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs263, TestSize.Level0)
{
......@@ -3776,7 +3524,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs263, TestSize.Level0)
* @tc.name: ItFsJffs264
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs264, TestSize.Level0)
{
......@@ -3787,7 +3534,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs264, TestSize.Level0)
* @tc.name: ItFsJffs265
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs265, TestSize.Level0)
{
......@@ -3798,7 +3544,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs265, TestSize.Level0)
* @tc.name: ItFsJffs266
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs266, TestSize.Level0)
{
......@@ -3809,7 +3554,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs266, TestSize.Level0)
* @tc.name: ItFsJffs267
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs267, TestSize.Level0)
{
......@@ -3820,7 +3564,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs267, TestSize.Level0)
* @tc.name: ItFsJffs268
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs268, TestSize.Level0)
{
......@@ -3831,7 +3574,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs268, TestSize.Level0)
* @tc.name: ItFsJffs269
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs269, TestSize.Level0)
{
......@@ -3842,7 +3584,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs269, TestSize.Level0)
* @tc.name: ItFsJffs270
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs270, TestSize.Level0)
{
......@@ -3853,7 +3594,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs270, TestSize.Level0)
* @tc.name: ItFsJffs271
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs271, TestSize.Level0)
{
......@@ -3864,7 +3604,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs271, TestSize.Level0)
* @tc.name: ItFsJffs272
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs272, TestSize.Level0)
{
......@@ -3875,7 +3614,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs272, TestSize.Level0)
* @tc.name: ItFsJffs273
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs273, TestSize.Level0)
{
......@@ -3886,7 +3624,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs273, TestSize.Level0)
* @tc.name: ItFsJffs274
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs274, TestSize.Level0)
{
......@@ -3897,7 +3634,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs274, TestSize.Level0)
* @tc.name: ItFsJffs275
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs275, TestSize.Level0)
{
......@@ -3908,7 +3644,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs275, TestSize.Level0)
* @tc.name: ItFsJffs276
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs276, TestSize.Level0)
{
......@@ -3919,7 +3654,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs276, TestSize.Level0)
* @tc.name: ItFsJffs277
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs277, TestSize.Level0)
{
......@@ -3930,7 +3664,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs277, TestSize.Level0)
* @tc.name: ItFsJffs278
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs278, TestSize.Level0)
{
......@@ -3941,7 +3674,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs278, TestSize.Level0)
* @tc.name: ItFsJffs279
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs279, TestSize.Level0)
{
......@@ -3952,7 +3684,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs279, TestSize.Level0)
* @tc.name: ItFsJffs280
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs280, TestSize.Level0)
{
......@@ -3963,7 +3694,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs280, TestSize.Level0)
* @tc.name: ItFsJffs281
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs281, TestSize.Level0)
{
......@@ -3974,7 +3704,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs281, TestSize.Level0)
* @tc.name: ItFsJffs282
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs282, TestSize.Level0)
{
......@@ -3985,7 +3714,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs282, TestSize.Level0)
* @tc.name: ItFsJffs283
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs283, TestSize.Level0)
{
......@@ -3996,7 +3724,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs283, TestSize.Level0)
* @tc.name: ItFsJffs284
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs284, TestSize.Level0)
{
......@@ -4007,7 +3734,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs284, TestSize.Level0)
* @tc.name: ItFsJffs285
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs285, TestSize.Level0)
{
......@@ -4018,7 +3744,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs285, TestSize.Level0)
* @tc.name: ItFsJffs288
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs288, TestSize.Level0)
{
......@@ -4029,7 +3754,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs288, TestSize.Level0)
* @tc.name: ItFsJffs289
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs289, TestSize.Level0)
{
......@@ -4040,7 +3764,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs289, TestSize.Level0)
* @tc.name: ItFsJffs290
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs290, TestSize.Level0)
{
......@@ -4051,7 +3774,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs290, TestSize.Level0)
* @tc.name: ItFsJffs291
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs291, TestSize.Level0)
{
......@@ -4062,7 +3784,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs291, TestSize.Level0)
* @tc.name: ItFsJffs292
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs292, TestSize.Level0)
{
......@@ -4073,7 +3794,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs292, TestSize.Level0)
* @tc.name: ItFsJffs293
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs293, TestSize.Level0)
{
......@@ -4084,7 +3804,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs293, TestSize.Level0)
* @tc.name: ItFsJffs294
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs294, TestSize.Level0)
{
......@@ -4095,7 +3814,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs294, TestSize.Level0)
* @tc.name: ItFsJffs295
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs295, TestSize.Level0)
{
......@@ -4106,7 +3824,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs295, TestSize.Level0)
* @tc.name: ItFsJffs296
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs296, TestSize.Level0)
{
......@@ -4117,7 +3834,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs296, TestSize.Level0)
* @tc.name: ItFsJffs297
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs297, TestSize.Level0)
{
......@@ -4128,7 +3844,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs297, TestSize.Level0)
* @tc.name: ItFsJffs298
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs298, TestSize.Level0)
{
......@@ -4139,7 +3854,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs298, TestSize.Level0)
* @tc.name: ItFsJffs299
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs299, TestSize.Level0)
{
......@@ -4150,7 +3864,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs299, TestSize.Level0)
* @tc.name: ItFsJffs300
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs300, TestSize.Level0)
{
......@@ -4161,7 +3874,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs300, TestSize.Level0)
* @tc.name: ItFsJffs301
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs301, TestSize.Level0)
{
......@@ -4172,7 +3884,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs301, TestSize.Level0)
* @tc.name: ItFsJffs302
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs302, TestSize.Level0)
{
......@@ -4183,7 +3894,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs302, TestSize.Level0)
* @tc.name: ItFsJffs303
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs303, TestSize.Level0)
{
......@@ -4194,7 +3904,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs303, TestSize.Level0)
* @tc.name: ItFsJffs304
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs304, TestSize.Level0)
{
......@@ -4205,7 +3914,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs304, TestSize.Level0)
* @tc.name: ItFsJffs305
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs305, TestSize.Level0)
{
......@@ -4216,7 +3924,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs305, TestSize.Level0)
* @tc.name: ItFsJffs306
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs306, TestSize.Level0)
{
......@@ -4227,7 +3934,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs306, TestSize.Level0)
* @tc.name: ItFsJffs307
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs307, TestSize.Level0)
{
......@@ -4238,7 +3944,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs307, TestSize.Level0)
* @tc.name: ItFsJffs308
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs308, TestSize.Level0)
{
......@@ -4249,7 +3954,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs308, TestSize.Level0)
* @tc.name: ItFsJffs309
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs309, TestSize.Level0)
{
......@@ -4260,7 +3964,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs309, TestSize.Level0)
* @tc.name: ItFsJffs310
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs310, TestSize.Level0)
{
......@@ -4271,7 +3974,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs310, TestSize.Level0)
* @tc.name: ItFsJffs311
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs311, TestSize.Level0)
{
......@@ -4282,7 +3984,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs311, TestSize.Level0)
* @tc.name: ItFsJffs312
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs312, TestSize.Level0)
{
......@@ -4293,7 +3994,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs312, TestSize.Level0)
* @tc.name: ItFsJffs313
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs313, TestSize.Level0)
{
......@@ -4304,7 +4004,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs313, TestSize.Level0)
* @tc.name: ItFsJffs314
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs314, TestSize.Level0)
{
......@@ -4315,7 +4014,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs314, TestSize.Level0)
* @tc.name: ItFsJffs315
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs315, TestSize.Level0)
{
......@@ -4326,7 +4024,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs315, TestSize.Level0)
* @tc.name: ItFsJffs316
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs316, TestSize.Level0)
{
......@@ -4337,7 +4034,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs316, TestSize.Level0)
* @tc.name: ItFsJffs317
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs317, TestSize.Level0)
{
......@@ -4348,7 +4044,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs317, TestSize.Level0)
* @tc.name: ItFsJffs318
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs318, TestSize.Level0)
{
......@@ -4359,7 +4054,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs318, TestSize.Level0)
* @tc.name: ItFsJffs319
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs319, TestSize.Level0)
{
......@@ -4370,7 +4064,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs319, TestSize.Level0)
* @tc.name: ItFsJffs320
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs320, TestSize.Level0)
{
......@@ -4381,7 +4074,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs320, TestSize.Level0)
* @tc.name: ItFsJffs321
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs321, TestSize.Level0)
{
......@@ -4392,7 +4084,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs321, TestSize.Level0)
* @tc.name: ItFsJffs322
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs322, TestSize.Level0)
{
......@@ -4403,7 +4094,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs322, TestSize.Level0)
* @tc.name: ItFsJffs323
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs323, TestSize.Level0)
{
......@@ -4414,7 +4104,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs323, TestSize.Level0)
* @tc.name: ItFsJffs324
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs324, TestSize.Level0)
{
......@@ -4425,7 +4114,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs324, TestSize.Level0)
* @tc.name: ItFsJffs325
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs325, TestSize.Level0)
{
......@@ -4436,7 +4124,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs325, TestSize.Level0)
* @tc.name: ItFsJffs326
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs326, TestSize.Level0)
{
......@@ -4447,7 +4134,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs326, TestSize.Level0)
* @tc.name: ItFsJffs327
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs327, TestSize.Level0)
{
......@@ -4458,7 +4144,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs327, TestSize.Level0)
* @tc.name: ItFsJffs328
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs328, TestSize.Level0)
{
......@@ -4469,7 +4154,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs328, TestSize.Level0)
* @tc.name: ItFsJffs329
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs329, TestSize.Level0)
{
......@@ -4480,7 +4164,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs329, TestSize.Level0)
* @tc.name: ItFsJffs330
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs330, TestSize.Level0)
{
......@@ -4491,7 +4174,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs330, TestSize.Level0)
* @tc.name: ItFsJffs331
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs331, TestSize.Level0)
{
......@@ -4502,7 +4184,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs331, TestSize.Level0)
* @tc.name: ItFsJffs332
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs332, TestSize.Level0)
{
......@@ -4513,7 +4194,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs332, TestSize.Level0)
* @tc.name: ItFsJffs333
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs333, TestSize.Level0)
{
......@@ -4524,7 +4204,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs333, TestSize.Level0)
* @tc.name: ItFsJffs334
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs334, TestSize.Level0)
{
......@@ -4535,7 +4214,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs334, TestSize.Level0)
* @tc.name: ItFsJffs335
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs335, TestSize.Level0)
{
......@@ -4546,7 +4224,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs335, TestSize.Level0)
* @tc.name: ItFsJffs336
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs336, TestSize.Level0)
{
......@@ -4557,7 +4234,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs336, TestSize.Level0)
* @tc.name: ItFsJffs337
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs337, TestSize.Level0)
{
......@@ -4568,7 +4244,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs337, TestSize.Level0)
* @tc.name: ItFsJffs338
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs338, TestSize.Level0)
{
......@@ -4579,7 +4254,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs338, TestSize.Level0)
* @tc.name: ItFsJffs339
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs339, TestSize.Level0)
{
......@@ -4590,7 +4264,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs339, TestSize.Level0)
* @tc.name: ItFsJffs340
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs340, TestSize.Level0)
{
......@@ -4601,7 +4274,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs340, TestSize.Level0)
* @tc.name: ItFsJffs342
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs342, TestSize.Level0)
{
......@@ -4612,7 +4284,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs342, TestSize.Level0)
* @tc.name: ItFsJffs343
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs343, TestSize.Level0)
{
......@@ -4623,7 +4294,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs343, TestSize.Level0)
* @tc.name: ItFsJffs344
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs344, TestSize.Level0)
{
......@@ -4634,7 +4304,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs344, TestSize.Level0)
* @tc.name: ItFsJffs346
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs346, TestSize.Level0)
{
......@@ -4645,7 +4314,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs346, TestSize.Level0)
* @tc.name: ItFsJffs352
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs352, TestSize.Level0)
{
......@@ -4656,7 +4324,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs352, TestSize.Level0)
* @tc.name: ItFsJffs353
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs353, TestSize.Level0)
{
......@@ -4667,7 +4334,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs353, TestSize.Level0)
* @tc.name: ItFsJffs354
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs354, TestSize.Level0)
{
......@@ -4678,7 +4344,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs354, TestSize.Level0)
* @tc.name: ItFsJffs355
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs355, TestSize.Level0)
{
......@@ -4689,7 +4354,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs355, TestSize.Level0)
* @tc.name: ItFsJffs356
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs356, TestSize.Level0)
{
......@@ -4700,7 +4364,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs356, TestSize.Level0)
* @tc.name: ItFsJffs357
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs357, TestSize.Level0)
{
......@@ -4711,7 +4374,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs357, TestSize.Level0)
* @tc.name: ItFsJffs358
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs358, TestSize.Level0)
{
......@@ -4722,7 +4384,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs358, TestSize.Level0)
* @tc.name: ItFsJffs359
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs359, TestSize.Level0)
{
......@@ -4733,7 +4394,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs359, TestSize.Level0)
* @tc.name: ItFsJffs360
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs360, TestSize.Level0)
{
......@@ -4744,7 +4404,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs360, TestSize.Level0)
* @tc.name: ItFsJffs361
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs361, TestSize.Level0)
{
......@@ -4755,7 +4414,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs361, TestSize.Level0)
* @tc.name: ItFsJffs362
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs362, TestSize.Level0)
{
......@@ -4766,7 +4424,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs362, TestSize.Level0)
* @tc.name: ItFsJffs364
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs364, TestSize.Level0)
{
......@@ -4777,7 +4434,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs364, TestSize.Level0)
* @tc.name: ItFsJffs365
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs365, TestSize.Level0)
{
......@@ -4788,7 +4444,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs365, TestSize.Level0)
* @tc.name: ItFsJffs366
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs366, TestSize.Level0)
{
......@@ -4799,7 +4454,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs366, TestSize.Level0)
* @tc.name: ItFsJffs367
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs367, TestSize.Level0)
{
......@@ -4810,7 +4464,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs367, TestSize.Level0)
* @tc.name: ItFsJffs368
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs368, TestSize.Level0)
{
......@@ -4821,7 +4474,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs368, TestSize.Level0)
* @tc.name: ItFsJffs369
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs369, TestSize.Level0)
{
......@@ -4832,7 +4484,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs369, TestSize.Level0)
* @tc.name: ItFsJffs370
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs370, TestSize.Level0)
{
......@@ -4843,7 +4494,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs370, TestSize.Level0)
* @tc.name: ItFsJffs371
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs371, TestSize.Level0)
{
......@@ -4854,7 +4504,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs371, TestSize.Level0)
* @tc.name: ItFsJffs372
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs372, TestSize.Level0)
{
......@@ -4865,7 +4514,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs372, TestSize.Level0)
* @tc.name: ItFsJffs373
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs373, TestSize.Level0)
{
......@@ -4876,7 +4524,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs373, TestSize.Level0)
* @tc.name: ItFsJffs374
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs374, TestSize.Level0)
{
......@@ -4887,7 +4534,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs374, TestSize.Level0)
* @tc.name: ItFsJffs375
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs375, TestSize.Level0)
{
......@@ -4898,7 +4544,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs375, TestSize.Level0)
* @tc.name: ItFsJffs376
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs376, TestSize.Level0)
{
......@@ -4909,7 +4554,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs376, TestSize.Level0)
* @tc.name: ItFsJffs377
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs377, TestSize.Level0)
{
......@@ -4920,7 +4564,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs377, TestSize.Level0)
* @tc.name: ItFsJffs378
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs378, TestSize.Level0)
{
......@@ -4931,7 +4574,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs378, TestSize.Level0)
* @tc.name: ItFsJffs379
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs379, TestSize.Level0)
{
......@@ -4942,7 +4584,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs379, TestSize.Level0)
* @tc.name: ItFsJffs380
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs380, TestSize.Level0)
{
......@@ -4953,7 +4594,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs380, TestSize.Level0)
* @tc.name: ItFsJffs381
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs381, TestSize.Level0)
{
......@@ -4964,7 +4604,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs381, TestSize.Level0)
* @tc.name: ItFsJffs382
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs382, TestSize.Level0)
{
......@@ -4975,7 +4614,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs382, TestSize.Level0)
* @tc.name: ItFsJffs383
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs383, TestSize.Level0)
{
......@@ -4986,7 +4624,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs383, TestSize.Level0)
* @tc.name: ItFsJffs384
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs384, TestSize.Level0)
{
......@@ -4997,7 +4634,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs384, TestSize.Level0)
* @tc.name: ItFsJffs385
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs385, TestSize.Level0)
{
......@@ -5008,7 +4644,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs385, TestSize.Level0)
* @tc.name: ItFsJffs386
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs386, TestSize.Level0)
{
......@@ -5019,7 +4654,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs386, TestSize.Level0)
* @tc.name: ItFsJffs387
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs387, TestSize.Level0)
{
......@@ -5030,7 +4664,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs387, TestSize.Level0)
* @tc.name: ItFsJffs388
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs388, TestSize.Level0)
{
......@@ -5041,7 +4674,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs388, TestSize.Level0)
* @tc.name: ItFsJffs389
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs389, TestSize.Level0)
{
......@@ -5052,7 +4684,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs389, TestSize.Level0)
* @tc.name: ItFsJffs390
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs390, TestSize.Level0)
{
......@@ -5063,7 +4694,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs390, TestSize.Level0)
* @tc.name: ItFsJffs391
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs391, TestSize.Level0)
{
......@@ -5074,7 +4704,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs391, TestSize.Level0)
* @tc.name: ItFsJffs392
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs392, TestSize.Level0)
{
......@@ -5085,7 +4714,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs392, TestSize.Level0)
* @tc.name: ItFsJffs393
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs393, TestSize.Level0)
{
......@@ -5096,7 +4724,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs393, TestSize.Level0)
* @tc.name: ItFsJffs394
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs394, TestSize.Level0)
{
......@@ -5107,7 +4734,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs394, TestSize.Level0)
* @tc.name: ItFsJffs395
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs395, TestSize.Level0)
{
......@@ -5118,7 +4744,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs395, TestSize.Level0)
* @tc.name: ItFsJffs396
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs396, TestSize.Level0)
{
......@@ -5129,7 +4754,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs396, TestSize.Level0)
* @tc.name: ItFsJffs397
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs397, TestSize.Level0)
{
......@@ -5140,7 +4764,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs397, TestSize.Level0)
* @tc.name: ItFsJffs398
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs398, TestSize.Level0)
{
......@@ -5151,7 +4774,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs398, TestSize.Level0)
* @tc.name: ItFsJffs399
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs399, TestSize.Level0)
{
......@@ -5162,7 +4784,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs399, TestSize.Level0)
* @tc.name: ItFsJffs400
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs400, TestSize.Level0)
{
......@@ -5173,7 +4794,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs400, TestSize.Level0)
* @tc.name: ItFsJffs401
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs401, TestSize.Level0)
{
......@@ -5184,7 +4804,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs401, TestSize.Level0)
* @tc.name: ItFsJffs402
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs402, TestSize.Level0)
{
......@@ -5195,7 +4814,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs402, TestSize.Level0)
* @tc.name: ItFsJffs403
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs403, TestSize.Level0)
{
......@@ -5206,7 +4824,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs403, TestSize.Level0)
* @tc.name: ItFsJffs404
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs404, TestSize.Level0)
{
......@@ -5217,7 +4834,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs404, TestSize.Level0)
* @tc.name: ItFsJffs405
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs405, TestSize.Level0)
{
......@@ -5228,7 +4844,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs405, TestSize.Level0)
* @tc.name: ItFsJffs406
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs406, TestSize.Level0)
{
......@@ -5239,7 +4854,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs406, TestSize.Level0)
* @tc.name: ItFsJffs407
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs407, TestSize.Level0)
{
......@@ -5250,7 +4864,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs407, TestSize.Level0)
* @tc.name: ItFsJffs408
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs408, TestSize.Level0)
{
......@@ -5261,7 +4874,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs408, TestSize.Level0)
* @tc.name: ItFsJffs409
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs409, TestSize.Level0)
{
......@@ -5272,7 +4884,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs409, TestSize.Level0)
* @tc.name: ItFsJffs410
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs410, TestSize.Level0)
{
......@@ -5283,7 +4894,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs410, TestSize.Level0)
* @tc.name: ItFsJffs411
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs411, TestSize.Level0)
{
......@@ -5294,7 +4904,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs411, TestSize.Level0)
* @tc.name: ItFsJffs412
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs412, TestSize.Level0)
{
......@@ -5305,7 +4914,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs412, TestSize.Level0)
* @tc.name: ItFsJffs413
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs413, TestSize.Level0)
{
......@@ -5316,7 +4924,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs413, TestSize.Level0)
* @tc.name: ItFsJffs414
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs414, TestSize.Level0)
{
......@@ -5327,7 +4934,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs414, TestSize.Level0)
* @tc.name: ItFsJffs415
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs415, TestSize.Level0)
{
......@@ -5338,7 +4944,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs415, TestSize.Level0)
* @tc.name: ItFsJffs416
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs416, TestSize.Level0)
{
......@@ -5349,7 +4954,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs416, TestSize.Level0)
* @tc.name: ItFsJffs417
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs417, TestSize.Level0)
{
......@@ -5360,7 +4964,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs417, TestSize.Level0)
* @tc.name: ItFsJffs418
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs418, TestSize.Level0)
{
......@@ -5371,7 +4974,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs418, TestSize.Level0)
* @tc.name: ItFsJffs419
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs419, TestSize.Level0)
{
......@@ -5382,7 +4984,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs419, TestSize.Level0)
* @tc.name: ItFsJffs420
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs420, TestSize.Level0)
{
......@@ -5393,7 +4994,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs420, TestSize.Level0)
* @tc.name: ItFsJffs421
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs421, TestSize.Level0)
{
......@@ -5404,7 +5004,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs421, TestSize.Level0)
* @tc.name: ItFsJffs422
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs422, TestSize.Level0)
{
......@@ -5415,7 +5014,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs422, TestSize.Level0)
* @tc.name: ItFsJffs423
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs423, TestSize.Level0)
{
......@@ -5426,7 +5024,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs423, TestSize.Level0)
* @tc.name: ItFsJffs424
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs424, TestSize.Level0)
{
......@@ -5437,7 +5034,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs424, TestSize.Level0)
* @tc.name: ItFsJffs425
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs425, TestSize.Level0)
{
......@@ -5448,7 +5044,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs425, TestSize.Level0)
* @tc.name: ItFsJffs426
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs426, TestSize.Level0)
{
......@@ -5459,7 +5054,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs426, TestSize.Level0)
* @tc.name: ItFsJffs427
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs427, TestSize.Level0)
{
......@@ -5470,7 +5064,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs427, TestSize.Level0)
* @tc.name: ItFsJffs428
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs428, TestSize.Level0)
{
......@@ -5481,7 +5074,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs428, TestSize.Level0)
* @tc.name: ItFsJffs429
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs429, TestSize.Level0)
{
......@@ -5492,7 +5084,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs429, TestSize.Level0)
* @tc.name: ItFsJffs430
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs430, TestSize.Level0)
{
......@@ -5503,7 +5094,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs430, TestSize.Level0)
* @tc.name: ItFsJffs431
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs431, TestSize.Level0)
{
......@@ -5514,7 +5104,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs431, TestSize.Level0)
* @tc.name: ItFsJffs432
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs432, TestSize.Level0)
{
......@@ -5525,7 +5114,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs432, TestSize.Level0)
* @tc.name: ItFsJffs433
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs433, TestSize.Level0)
{
......@@ -5536,7 +5124,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs433, TestSize.Level0)
* @tc.name: ItFsJffs434
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs434, TestSize.Level0)
{
......@@ -5547,7 +5134,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs434, TestSize.Level0)
* @tc.name: ItFsJffs435
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs435, TestSize.Level0)
{
......@@ -5558,7 +5144,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs435, TestSize.Level0)
* @tc.name: ItFsJffs454
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs454, TestSize.Level0)
{
......@@ -5569,7 +5154,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs454, TestSize.Level0)
* @tc.name: ItFsJffs455
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs455, TestSize.Level0)
{
......@@ -5580,7 +5164,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs455, TestSize.Level0)
* @tc.name: ItFsJffs456
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs456, TestSize.Level0)
{
......@@ -5591,7 +5174,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs456, TestSize.Level0)
* @tc.name: ItFsJffs457
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs457, TestSize.Level0)
{
......@@ -5602,7 +5184,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs457, TestSize.Level0)
* @tc.name: ItFsJffs458
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs458, TestSize.Level0)
{
......@@ -5613,7 +5194,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs458, TestSize.Level0)
* @tc.name: ItFsJffs459
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs459, TestSize.Level0)
{
......@@ -5624,7 +5204,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs459, TestSize.Level0)
* @tc.name: ItFsJffs460
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs460, TestSize.Level0)
{
......@@ -5635,7 +5214,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs460, TestSize.Level0)
* @tc.name: ItFsJffs461
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs461, TestSize.Level0)
{
......@@ -5646,7 +5224,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs461, TestSize.Level0)
* @tc.name: ItFsJffs462
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs462, TestSize.Level0)
{
......@@ -5657,7 +5234,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs462, TestSize.Level0)
* @tc.name: ItFsJffs487
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs487, TestSize.Level0)
{
......@@ -5668,7 +5244,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs487, TestSize.Level0)
* @tc.name: ItFsJffs488
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs488, TestSize.Level0)
{
......@@ -5679,7 +5254,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs488, TestSize.Level0)
* @tc.name: ItFsJffs489
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs489, TestSize.Level0)
{
......@@ -5690,7 +5264,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs489, TestSize.Level0)
* @tc.name: ItFsJffs490
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs490, TestSize.Level0)
{
......@@ -5701,7 +5274,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs490, TestSize.Level0)
* @tc.name: ItFsJffs491
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs491, TestSize.Level0)
{
......@@ -5712,7 +5284,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs491, TestSize.Level0)
* @tc.name: ItFsJffs492
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs492, TestSize.Level0)
{
......@@ -5723,7 +5294,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs492, TestSize.Level0)
* @tc.name: ItFsJffs493
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs493, TestSize.Level0)
{
......@@ -5734,7 +5304,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs493, TestSize.Level0)
* @tc.name: ItFsJffs494
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs494, TestSize.Level0)
{
......@@ -5745,7 +5314,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs494, TestSize.Level0)
* @tc.name: ItFsJffs496
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs496, TestSize.Level0)
{
......@@ -5756,7 +5324,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs496, TestSize.Level0)
* @tc.name: ItFsJffs497
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs497, TestSize.Level0)
{
......@@ -5767,7 +5334,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs497, TestSize.Level0)
* @tc.name: ItFsJffs498
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs498, TestSize.Level0)
{
......@@ -5778,7 +5344,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs498, TestSize.Level0)
* @tc.name: ItFsJffs499
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs499, TestSize.Level0)
{
......@@ -5789,7 +5354,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs499, TestSize.Level0)
* @tc.name: ItFsJffs500
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs500, TestSize.Level0)
{
......@@ -5800,7 +5364,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs500, TestSize.Level0)
* @tc.name: ItFsJffs501
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs501, TestSize.Level0)
{
......@@ -5811,7 +5374,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs501, TestSize.Level0)
* @tc.name: ItFsJffs502
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs502, TestSize.Level0)
{
......@@ -5822,7 +5384,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs502, TestSize.Level0)
* @tc.name: ItFsJffs503
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs503, TestSize.Level0)
{
......@@ -5833,7 +5394,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs503, TestSize.Level0)
* @tc.name: ItFsJffs504
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs504, TestSize.Level0)
{
......@@ -5844,7 +5404,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs504, TestSize.Level0)
* @tc.name: ItFsJffs505
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs505, TestSize.Level0)
{
......@@ -5855,7 +5414,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs505, TestSize.Level0)
* @tc.name: ItFsJffs506
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs506, TestSize.Level0)
{
......@@ -5866,7 +5424,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs506, TestSize.Level0)
* @tc.name: ItFsJffs507
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs507, TestSize.Level0)
{
......@@ -5877,7 +5434,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs507, TestSize.Level0)
* @tc.name: ItFsJffs508
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs508, TestSize.Level0)
{
......@@ -5888,7 +5444,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs508, TestSize.Level0)
* @tc.name: ItFsJffs509
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs509, TestSize.Level0)
{
......@@ -5899,7 +5454,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs509, TestSize.Level0)
* @tc.name: ItFsJffs510
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs510, TestSize.Level0)
{
......@@ -5910,7 +5464,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs510, TestSize.Level0)
* @tc.name: ItFsJffs511
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs511, TestSize.Level0)
{
......@@ -5921,7 +5474,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs511, TestSize.Level0)
* @tc.name: ItFsJffs512
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs512, TestSize.Level0)
{
......@@ -5932,7 +5484,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs512, TestSize.Level0)
* @tc.name: ItFsJffs513
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs513, TestSize.Level0)
{
......@@ -5943,7 +5494,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs513, TestSize.Level0)
* @tc.name: ItFsJffs514
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs514, TestSize.Level0)
{
......@@ -5954,7 +5504,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs514, TestSize.Level0)
* @tc.name: ItFsJffs515
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs515, TestSize.Level0)
{
......@@ -5965,7 +5514,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs515, TestSize.Level0)
* @tc.name: ItFsJffs516
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs516, TestSize.Level0)
{
......@@ -5976,7 +5524,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs516, TestSize.Level0)
* @tc.name: ItFsJffs517
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs517, TestSize.Level0)
{
......@@ -5987,7 +5534,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs517, TestSize.Level0)
* @tc.name: ItFsJffs518
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs518, TestSize.Level0)
{
......@@ -5998,7 +5544,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs518, TestSize.Level0)
* @tc.name: ItFsJffs519
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs519, TestSize.Level0)
{
......@@ -6009,7 +5554,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs519, TestSize.Level0)
* @tc.name: ItFsJffs520
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs520, TestSize.Level0)
{
......@@ -6020,7 +5564,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs520, TestSize.Level0)
* @tc.name: ItFsJffs521
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs521, TestSize.Level0)
{
......@@ -6031,7 +5574,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs521, TestSize.Level0)
* @tc.name: ItFsJffs522
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs522, TestSize.Level0)
{
......@@ -6042,7 +5584,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs522, TestSize.Level0)
* @tc.name: ItFsJffs523
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs523, TestSize.Level0)
{
......@@ -6053,7 +5594,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs523, TestSize.Level0)
* @tc.name: ItFsJffs524
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs524, TestSize.Level0)
{
......@@ -6064,7 +5604,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs524, TestSize.Level0)
* @tc.name: ItFsJffs526
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs526, TestSize.Level0)
{
......@@ -6075,7 +5614,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs526, TestSize.Level0)
* @tc.name: ItFsJffs528
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs528, TestSize.Level0)
{
......@@ -6086,7 +5624,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs528, TestSize.Level0)
* @tc.name: ItFsJffs529
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs529, TestSize.Level0)
{
......@@ -6097,7 +5634,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs529, TestSize.Level0)
* @tc.name: ItFsJffs530
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs530, TestSize.Level0)
{
......@@ -6108,7 +5644,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs530, TestSize.Level0)
* @tc.name: ItFsJffs531
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs531, TestSize.Level0)
{
......@@ -6119,7 +5654,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs531, TestSize.Level0)
* @tc.name: ItFsJffs532
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs532, TestSize.Level0)
{
......@@ -6130,7 +5664,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs532, TestSize.Level0)
* @tc.name: ItFsJffs533
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs533, TestSize.Level0)
{
......@@ -6141,7 +5674,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs533, TestSize.Level0)
* @tc.name: ItFsJffs534
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs534, TestSize.Level0)
{
......@@ -6152,7 +5684,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs534, TestSize.Level0)
* @tc.name: ItFsJffs541
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs541, TestSize.Level0)
{
......@@ -6163,7 +5694,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs541, TestSize.Level0)
* @tc.name: ItFsJffs542
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs542, TestSize.Level0)
{
......@@ -6174,7 +5704,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs542, TestSize.Level0)
* @tc.name: ItFsJffs543
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs543, TestSize.Level0)
{
......@@ -6185,7 +5714,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs543, TestSize.Level0)
* @tc.name: ItFsJffs544
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs544, TestSize.Level0)
{
......@@ -6196,7 +5724,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs544, TestSize.Level0)
* @tc.name: ItFsJffs545
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs545, TestSize.Level0)
{
......@@ -6207,7 +5734,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs545, TestSize.Level0)
* @tc.name: ItFsJffs546
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs546, TestSize.Level0)
{
......@@ -6218,7 +5744,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs546, TestSize.Level0)
* @tc.name: ItFsJffs547
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs547, TestSize.Level0)
{
......@@ -6229,7 +5754,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs547, TestSize.Level0)
* @tc.name: ItFsJffs548
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs548, TestSize.Level0)
{
......@@ -6240,7 +5764,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs548, TestSize.Level0)
* @tc.name: ItFsJffs549
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs549, TestSize.Level0)
{
......@@ -6251,7 +5774,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs549, TestSize.Level0)
* @tc.name: ItFsJffs550
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs550, TestSize.Level0)
{
......@@ -6262,7 +5784,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs550, TestSize.Level0)
* @tc.name: ItFsJffs551
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs551, TestSize.Level0)
{
......@@ -6273,7 +5794,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs551, TestSize.Level0)
* @tc.name: ItFsJffs552
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs552, TestSize.Level0)
{
......@@ -6284,7 +5804,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs552, TestSize.Level0)
* @tc.name: ItFsJffs553
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs553, TestSize.Level0)
{
......@@ -6295,7 +5814,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs553, TestSize.Level0)
* @tc.name: ItFsJffs554
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs554, TestSize.Level0)
{
......@@ -6306,7 +5824,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs554, TestSize.Level0)
* @tc.name: ItFsJffs555
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs555, TestSize.Level0)
{
......@@ -6317,7 +5834,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs555, TestSize.Level0)
* @tc.name: ItFsJffs556
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs556, TestSize.Level0)
{
......@@ -6328,7 +5844,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs556, TestSize.Level0)
* @tc.name: ItFsJffs557
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs557, TestSize.Level0)
{
......@@ -6339,7 +5854,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs557, TestSize.Level0)
* @tc.name: ItFsJffs560
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs560, TestSize.Level0)
{
......@@ -6350,7 +5864,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs560, TestSize.Level0)
* @tc.name: ItFsJffs562
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs562, TestSize.Level0)
{
......@@ -6361,7 +5874,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs562, TestSize.Level0)
* @tc.name: ItFsJffs563
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs563, TestSize.Level0)
{
......@@ -6372,7 +5884,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs563, TestSize.Level0)
* @tc.name: ItFsJffs564
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs564, TestSize.Level0)
{
......@@ -6383,7 +5894,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs564, TestSize.Level0)
* @tc.name: ItFsJffs565
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs565, TestSize.Level0)
{
......@@ -6394,7 +5904,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs565, TestSize.Level0)
* @tc.name: ItFsJffs566
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs566, TestSize.Level0)
{
......@@ -6405,7 +5914,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs566, TestSize.Level0)
* @tc.name: ItFsJffs567
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs567, TestSize.Level0)
{
......@@ -6416,7 +5924,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs567, TestSize.Level0)
* @tc.name: ItFsJffs568
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs568, TestSize.Level0)
{
......@@ -6427,7 +5934,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs568, TestSize.Level0)
* @tc.name: ItFsJffs569
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs569, TestSize.Level0)
{
......@@ -6438,7 +5944,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs569, TestSize.Level0)
* @tc.name: ItFsJffs570
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs570, TestSize.Level0)
{
......@@ -6449,7 +5954,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs570, TestSize.Level0)
* @tc.name: ItFsJffs571
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs571, TestSize.Level0)
{
......@@ -6460,7 +5964,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs571, TestSize.Level0)
* @tc.name: ItFsJffs572
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs572, TestSize.Level0)
{
......@@ -6471,7 +5974,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs572, TestSize.Level0)
* @tc.name: ItFsJffs573
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs573, TestSize.Level0)
{
......@@ -6482,7 +5984,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs573, TestSize.Level0)
* @tc.name: ItFsJffs574
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs574, TestSize.Level0)
{
......@@ -6493,7 +5994,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs574, TestSize.Level0)
* @tc.name: ItFsJffs124
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs124, TestSize.Level0)
{
......@@ -6504,7 +6004,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs124, TestSize.Level0)
* @tc.name: ItFsJffs125
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs125, TestSize.Level0)
{
......@@ -6515,7 +6014,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs125, TestSize.Level0)
* @tc.name: ItFsJffs583
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs583, TestSize.Level0)
{
......@@ -6526,7 +6024,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs583, TestSize.Level0)
* @tc.name: ItFsJffs584
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs584, TestSize.Level0)
{
......@@ -6537,7 +6034,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs584, TestSize.Level0)
* @tc.name: ItFsJffs586
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs586, TestSize.Level0)
{
......@@ -6548,7 +6044,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs586, TestSize.Level0)
* @tc.name: ItFsJffs589
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs589, TestSize.Level0)
{
......@@ -6559,7 +6054,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs589, TestSize.Level0)
* @tc.name: ItFsJffs591
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs591, TestSize.Level0)
{
......@@ -6570,7 +6064,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs591, TestSize.Level0)
* @tc.name: ItFsJffs592
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs592, TestSize.Level0)
{
......@@ -6581,7 +6074,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs592, TestSize.Level0)
* @tc.name: ItFsJffs593
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs593, TestSize.Level0)
{
......@@ -6592,7 +6084,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs593, TestSize.Level0)
* @tc.name: ItFsJffs594
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs594, TestSize.Level0)
{
......@@ -6603,7 +6094,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs594, TestSize.Level0)
* @tc.name: ItFsJffs595
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs595, TestSize.Level0)
{
......@@ -6614,7 +6104,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs595, TestSize.Level0)
* @tc.name: ItFsJffs596
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs596, TestSize.Level0)
{
......@@ -6625,7 +6114,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs596, TestSize.Level0)
* @tc.name: ItFsJffs603
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs603, TestSize.Level0)
{
......@@ -6636,7 +6124,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs603, TestSize.Level0)
* @tc.name: ItFsJffs636
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs636, TestSize.Level0)
{
......@@ -6647,7 +6134,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs636, TestSize.Level0)
* @tc.name: ItFsJffs643
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs643, TestSize.Level0)
{
......@@ -6658,7 +6144,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs643, TestSize.Level0)
* @tc.name: ItFsJffs644
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs644, TestSize.Level0)
{
......@@ -6669,7 +6154,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs644, TestSize.Level0)
* @tc.name: ItFsJffs645
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs645, TestSize.Level0)
{
......@@ -6680,7 +6164,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs645, TestSize.Level0)
* @tc.name: ItFsJffs646
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs646, TestSize.Level0)
{
......@@ -6691,7 +6174,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs646, TestSize.Level0)
* @tc.name: ItFsJffs648
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs648, TestSize.Level0)
{
......@@ -6702,7 +6184,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs648, TestSize.Level0)
* @tc.name: ItFsJffs649
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs649, TestSize.Level0)
{
......@@ -6713,7 +6194,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs649, TestSize.Level0)
* @tc.name: ItFsJffs650
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs650, TestSize.Level0)
{
......@@ -6724,7 +6204,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs650, TestSize.Level0)
* @tc.name: ItFsJffs651
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs651, TestSize.Level0)
{
......@@ -6735,7 +6214,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs651, TestSize.Level0)
* @tc.name: ItFsJffs652
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs652, TestSize.Level0)
{
......@@ -6746,7 +6224,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs652, TestSize.Level0)
* @tc.name: ItFsJffs653
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs653, TestSize.Level0)
{
......@@ -6757,7 +6234,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs653, TestSize.Level0)
* @tc.name: ItFsJffs654
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs654, TestSize.Level0)
{
......@@ -6768,7 +6244,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs654, TestSize.Level0)
* @tc.name: ItFsJffs655
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs655, TestSize.Level0)
{
......@@ -6779,7 +6254,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs655, TestSize.Level0)
* @tc.name: ItFsJffs656
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs656, TestSize.Level0)
{
......@@ -6790,7 +6264,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs656, TestSize.Level0)
* @tc.name: ItFsJffs663
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs663, TestSize.Level0)
{
......@@ -6801,7 +6274,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs663, TestSize.Level0)
* @tc.name: ItFsJffs664
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs664, TestSize.Level0)
{
......@@ -6812,7 +6284,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs664, TestSize.Level0)
* @tc.name: ItFsJffs665
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs665, TestSize.Level0)
{
......@@ -6823,7 +6294,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs665, TestSize.Level0)
* @tc.name: ItFsJffs666
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs666, TestSize.Level0)
{
......@@ -6834,7 +6304,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs666, TestSize.Level0)
* @tc.name: ItFsJffs668
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs668, TestSize.Level0)
{
......@@ -6845,7 +6314,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs668, TestSize.Level0)
* @tc.name: ItFsJffs669
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs669, TestSize.Level0)
{
......@@ -6856,7 +6324,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs669, TestSize.Level0)
* @tc.name: ItFsJffs670
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs670, TestSize.Level0)
{
......@@ -6867,7 +6334,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs670, TestSize.Level0)
* @tc.name: ItFsJffs671
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs671, TestSize.Level0)
{
......@@ -6878,7 +6344,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs671, TestSize.Level0)
* @tc.name: ItFsJffs672
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs672, TestSize.Level0)
{
......@@ -6889,7 +6354,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs672, TestSize.Level0)
* @tc.name: ItFsJffs673
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs673, TestSize.Level0)
{
......@@ -6900,7 +6364,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs673, TestSize.Level0)
* @tc.name: ItFsJffs674
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs674, TestSize.Level0)
{
......@@ -6911,7 +6374,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs674, TestSize.Level0)
* @tc.name: ItFsJffs675
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs675, TestSize.Level0)
{
......@@ -6922,7 +6384,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs675, TestSize.Level0)
* @tc.name: ItFsJffs676
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs676, TestSize.Level0)
{
......@@ -6933,7 +6394,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs676, TestSize.Level0)
* @tc.name: ItFsJffs690
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs690, TestSize.Level0)
{
......@@ -6944,7 +6404,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs690, TestSize.Level0)
* @tc.name: ItFsJffs694
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs694, TestSize.Level0)
{
......@@ -6955,7 +6414,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs694, TestSize.Level0)
* @tc.name: ItFsJffs696
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs696, TestSize.Level0)
{
......@@ -6966,7 +6424,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs696, TestSize.Level0)
* @tc.name: ItFsJffs697
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs697, TestSize.Level0)
{
......@@ -6977,7 +6434,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs697, TestSize.Level0)
* @tc.name: ItFsJffs700
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs700, TestSize.Level0)
{
......@@ -6988,7 +6444,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs700, TestSize.Level0)
* @tc.name: ItFsJffs701
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs701, TestSize.Level0)
{
......@@ -6999,7 +6454,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs701, TestSize.Level0)
* @tc.name: ItFsJffs807
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs807, TestSize.Level0)
{
......@@ -7010,7 +6464,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs807, TestSize.Level0)
* @tc.name: ItFsJffs808
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs808, TestSize.Level0)
{
......@@ -7093,7 +6546,6 @@ HWTEST_F(VfsJffsTest, ItFsTestMountRdonly003, TestSize.Level0)
* @tc.name: It_Test_Dac_001
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItTestDac001, TestSize.Level0)
{
......@@ -7104,7 +6556,6 @@ HWTEST_F(VfsJffsTest, ItTestDac001, TestSize.Level0)
* @tc.name: ItFsJffs001
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs001, TestSize.Level0)
{
......@@ -7115,7 +6566,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs001, TestSize.Level0)
* @tc.name: ItFsJffs002
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs002, TestSize.Level0)
{
......@@ -7126,7 +6576,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs002, TestSize.Level0)
* @tc.name: ItFsJffs003
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs003, TestSize.Level0)
{
......@@ -7137,7 +6586,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs003, TestSize.Level0)
* @tc.name: ItFsJffs005
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs005, TestSize.Level0)
{
......@@ -7148,7 +6596,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs005, TestSize.Level0)
* @tc.name: ItFsJffs021
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs021, TestSize.Level0)
{
......@@ -7159,7 +6606,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs021, TestSize.Level0)
* @tc.name: ItFsJffs022
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs022, TestSize.Level0)
{
......@@ -7170,7 +6616,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs022, TestSize.Level0)
* @tc.name: ItFsJffs026
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs026, TestSize.Level0)
{
......@@ -7181,7 +6626,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs026, TestSize.Level0)
* @tc.name: ItFsJffs027
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs027, TestSize.Level0)
{
......@@ -7192,7 +6636,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs027, TestSize.Level0)
* @tc.name: ItFsJffs095
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs095, TestSize.Level0)
{
......@@ -7203,7 +6646,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs095, TestSize.Level0)
* @tc.name: ItFsJffs535
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffs535, TestSize.Level0)
{
......@@ -7217,7 +6659,6 @@ HWTEST_F(VfsJffsTest, ItFsJffs535, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_001
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure001, TestSize.Level0)
{
......@@ -7228,7 +6669,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure001, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_002
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure002, TestSize.Level0)
{
......@@ -7239,7 +6679,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure002, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_003
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure003, TestSize.Level0)
{
......@@ -7250,7 +6689,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure003, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_004
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure004, TestSize.Level0)
{
......@@ -7261,7 +6699,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure004, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_005
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure005, TestSize.Level0)
{
......@@ -7272,7 +6709,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure005, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_006
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure006, TestSize.Level0)
{
......@@ -7283,7 +6719,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure006, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_007
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure007, TestSize.Level0)
{
......@@ -7294,7 +6729,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure007, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_008
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure008, TestSize.Level0)
{
......@@ -7305,7 +6739,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure008, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_009
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure009, TestSize.Level0)
{
......@@ -7316,7 +6749,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure009, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_010
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure010, TestSize.Level0)
{
......@@ -7327,7 +6759,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure010, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_011
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure011, TestSize.Level0)
{
......@@ -7338,7 +6769,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure011, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_012
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure012, TestSize.Level0)
{
......@@ -7349,7 +6779,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure012, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_014
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure014, TestSize.Level0)
{
......@@ -7360,7 +6789,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure014, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_015
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure015, TestSize.Level0)
{
......@@ -7371,7 +6799,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure015, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_016
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure016, TestSize.Level0)
{
......@@ -7382,7 +6809,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure016, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_017
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure017, TestSize.Level0)
{
......@@ -7393,7 +6819,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure017, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_018
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure018, TestSize.Level0)
{
......@@ -7404,7 +6829,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure018, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_019
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure019, TestSize.Level0)
{
......@@ -7415,7 +6839,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure019, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_020
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure020, TestSize.Level0)
{
......@@ -7426,7 +6849,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure020, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_021
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure021, TestSize.Level0)
{
......@@ -7437,7 +6859,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure021, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_022
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure022, TestSize.Level0)
{
......@@ -7448,7 +6869,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure022, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_023
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure023, TestSize.Level0)
{
......@@ -7459,7 +6879,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure023, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_025
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure025, TestSize.Level0)
{
......@@ -7470,7 +6889,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure025, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_026
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure026, TestSize.Level0)
{
......@@ -7481,7 +6899,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure026, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_027
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure027, TestSize.Level0)
{
......@@ -7492,7 +6909,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure027, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_028
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure028, TestSize.Level0)
{
......@@ -7503,7 +6919,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure028, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_030
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure030, TestSize.Level0)
{
......@@ -7514,7 +6929,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure030, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_031
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure031, TestSize.Level0)
{
......@@ -7525,7 +6939,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure031, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_032
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure032, TestSize.Level0)
{
......@@ -7536,7 +6949,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure032, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_033
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure033, TestSize.Level0)
{
......@@ -7547,7 +6959,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure033, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_034
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure034, TestSize.Level0)
{
......@@ -7558,7 +6969,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure034, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_035
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure035, TestSize.Level0)
{
......@@ -7569,7 +6979,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure035, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_036
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure036, TestSize.Level0)
{
......@@ -7580,7 +6989,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure036, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_037
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure037, TestSize.Level0)
{
......@@ -7591,7 +6999,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure037, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_038
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure038, TestSize.Level0)
{
......@@ -7602,7 +7009,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure038, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_039
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure039, TestSize.Level0)
{
......@@ -7613,7 +7019,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure039, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_040
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure040, TestSize.Level0)
{
......@@ -7624,7 +7029,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure040, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_041
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure041, TestSize.Level0)
{
......@@ -7635,7 +7039,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure041, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_042
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure042, TestSize.Level0)
{
......@@ -7646,7 +7049,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure042, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_043
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure043, TestSize.Level0)
{
......@@ -7657,7 +7059,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure043, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_044
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure044, TestSize.Level0)
{
......@@ -7668,7 +7069,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure044, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_045
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure045, TestSize.Level0)
{
......@@ -7679,7 +7079,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure045, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_046
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure046, TestSize.Level0)
{
......@@ -7690,7 +7089,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure046, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_047
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure047, TestSize.Level0)
{
......@@ -7701,7 +7099,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure047, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_048
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure048, TestSize.Level0)
{
......@@ -7712,7 +7109,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure048, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_049
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure049, TestSize.Level0)
{
......@@ -7723,7 +7119,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure049, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_051
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure051, TestSize.Level0)
{
......@@ -7734,7 +7129,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure051, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_052
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure052, TestSize.Level0)
{
......@@ -7745,7 +7139,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure052, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_053
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure053, TestSize.Level0)
{
......@@ -7756,7 +7149,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure053, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_301
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure301, TestSize.Level0)
{
......@@ -7767,7 +7159,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure301, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_302
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure302, TestSize.Level0)
{
......@@ -7778,7 +7169,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure302, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_303
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure303, TestSize.Level0)
{
......@@ -7789,7 +7179,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure303, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_304
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure304, TestSize.Level0)
{
......@@ -7800,7 +7189,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure304, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_305
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure305, TestSize.Level0)
{
......@@ -7811,7 +7199,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure305, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_306
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure306, TestSize.Level0)
{
......@@ -7822,7 +7209,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure306, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_307
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure307, TestSize.Level0)
{
......@@ -7833,7 +7219,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure307, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_308
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure308, TestSize.Level0)
{
......@@ -7844,7 +7229,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure308, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_309
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure309, TestSize.Level0)
{
......@@ -7855,7 +7239,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure309, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_310
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure310, TestSize.Level0)
{
......@@ -7866,7 +7249,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure310, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_311
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure311, TestSize.Level0)
{
......@@ -7877,7 +7259,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure311, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_312
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure312, TestSize.Level0)
{
......@@ -7888,7 +7269,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure312, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_313
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure313, TestSize.Level0)
{
......@@ -7899,7 +7279,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure313, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_314
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure314, TestSize.Level0)
{
......@@ -7910,7 +7289,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure314, TestSize.Level0)
* @tc.name: ItFsJffsPRESSURE_315
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPressure315, TestSize.Level0)
{
......@@ -7922,7 +7300,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPressure315, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_001
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread001, TestSize.Level0)
{
......@@ -7933,7 +7310,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread001, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_002
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread002, TestSize.Level0)
{
......@@ -7944,7 +7320,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread002, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_003
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread003, TestSize.Level0)
{
......@@ -7955,7 +7330,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread003, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_004
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread004, TestSize.Level0)
{
......@@ -7966,7 +7340,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread004, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_005
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread005, TestSize.Level0)
{
......@@ -7977,7 +7350,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread005, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_006
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread006, TestSize.Level0)
{
......@@ -7988,7 +7360,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread006, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_007
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread007, TestSize.Level0)
{
......@@ -7999,7 +7370,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread007, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_008
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread008, TestSize.Level0)
{
......@@ -8010,7 +7380,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread008, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_009
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread009, TestSize.Level0)
{
......@@ -8021,7 +7390,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread009, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_010
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread010, TestSize.Level0)
{
......@@ -8032,7 +7400,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread010, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_011
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread011, TestSize.Level0)
{
......@@ -8043,7 +7410,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread011, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_012
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread012, TestSize.Level0)
{
......@@ -8054,7 +7420,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread012, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_013
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread013, TestSize.Level0)
{
......@@ -8065,7 +7430,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread013, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_014
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread014, TestSize.Level0)
{
......@@ -8076,7 +7440,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread014, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_015
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread015, TestSize.Level0)
{
......@@ -8087,7 +7450,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread015, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_016
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread016, TestSize.Level0)
{
......@@ -8098,7 +7460,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread016, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_017
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread017, TestSize.Level0)
{
......@@ -8109,7 +7470,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread017, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_018
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread018, TestSize.Level0)
{
......@@ -8120,7 +7480,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread018, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_019
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread019, TestSize.Level0)
{
......@@ -8131,7 +7490,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread019, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_020
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread020, TestSize.Level0)
{
......@@ -8142,7 +7500,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread020, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_021
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread021, TestSize.Level0)
{
......@@ -8153,7 +7510,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread021, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_022
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread022, TestSize.Level0)
{
......@@ -8164,7 +7520,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread022, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_023
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread023, TestSize.Level0)
{
......@@ -8175,7 +7530,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread023, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_024
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread024, TestSize.Level0)
{
......@@ -8186,7 +7540,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread024, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_025
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread025, TestSize.Level0)
{
......@@ -8197,7 +7550,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread025, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_026
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread026, TestSize.Level0)
{
......@@ -8208,7 +7560,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread026, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_027
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread027, TestSize.Level0)
{
......@@ -8219,7 +7570,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread027, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_028
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread028, TestSize.Level0)
{
......@@ -8230,7 +7580,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread028, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_029
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread029, TestSize.Level0)
{
......@@ -8241,7 +7590,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread029, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_030
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread030, TestSize.Level0)
{
......@@ -8252,7 +7600,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread030, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_031
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread031, TestSize.Level0)
{
......@@ -8263,7 +7610,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread031, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_032
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread032, TestSize.Level0)
{
......@@ -8274,7 +7620,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread032, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_033
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread033, TestSize.Level0)
{
......@@ -8285,7 +7630,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread033, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_034
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread034, TestSize.Level0)
{
......@@ -8296,7 +7640,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread034, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_035
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread035, TestSize.Level0)
{
......@@ -8307,7 +7650,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread035, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_036
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread036, TestSize.Level0)
{
......@@ -8318,7 +7660,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread036, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_037
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread037, TestSize.Level0)
{
......@@ -8329,7 +7670,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread037, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_038
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread038, TestSize.Level0)
{
......@@ -8340,7 +7680,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread038, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_039
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread039, TestSize.Level0)
{
......@@ -8351,7 +7690,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread039, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_040
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread040, TestSize.Level0)
{
......@@ -8362,7 +7700,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread040, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_041
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread041, TestSize.Level0)
{
......@@ -8373,7 +7710,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread041, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_042
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread042, TestSize.Level0)
{
......@@ -8384,7 +7720,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread042, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_043
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread043, TestSize.Level0)
{
......@@ -8395,7 +7730,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread043, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_044
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread044, TestSize.Level0)
{
......@@ -8406,7 +7740,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread044, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_045
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread045, TestSize.Level0)
{
......@@ -8417,7 +7750,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread045, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_046
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread046, TestSize.Level0)
{
......@@ -8428,7 +7760,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread046, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_047
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread047, TestSize.Level0)
{
......@@ -8439,7 +7770,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread047, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_048
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread048, TestSize.Level0)
{
......@@ -8450,7 +7780,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread048, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_049
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread049, TestSize.Level0)
{
......@@ -8461,7 +7790,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread049, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_050
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread050, TestSize.Level0)
{
......@@ -8472,7 +7800,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread050, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_051
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread051, TestSize.Level0)
{
......@@ -8483,7 +7810,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread051, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_052
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread052, TestSize.Level0)
{
......@@ -8494,7 +7820,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread052, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_053
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread053, TestSize.Level0)
{
......@@ -8505,7 +7830,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread053, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_054
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread054, TestSize.Level0)
{
......@@ -8516,7 +7840,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread054, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_055
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread055, TestSize.Level0)
{
......@@ -8527,7 +7850,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread055, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_056
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread056, TestSize.Level0)
{
......@@ -8538,7 +7860,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread056, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_057
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread057, TestSize.Level0)
{
......@@ -8549,7 +7870,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread057, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_058
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread058, TestSize.Level0)
{
......@@ -8560,7 +7880,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread058, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_059
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread059, TestSize.Level0)
{
......@@ -8571,7 +7890,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread059, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_060
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread060, TestSize.Level0)
{
......@@ -8582,7 +7900,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread060, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_061
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread061, TestSize.Level0)
{
......@@ -8593,7 +7910,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread061, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_062
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread062, TestSize.Level0)
{
......@@ -8604,7 +7920,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread062, TestSize.Level0)
* @tc.name: ItFsJffsMULTIPTHREAD_063
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsMultipthread063, TestSize.Level0)
{
......@@ -8616,7 +7931,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsMultipthread063, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_013
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance013, TestSize.Level0)
{
......@@ -8627,7 +7941,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance013, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_001
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance001, TestSize.Level0)
{
......@@ -8638,7 +7951,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance001, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_002
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance002, TestSize.Level0)
{
......@@ -8649,7 +7961,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance002, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_003
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance003, TestSize.Level0)
{
......@@ -8660,7 +7971,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance003, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_004
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance004, TestSize.Level0)
{
......@@ -8671,7 +7981,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance004, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_005
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance005, TestSize.Level0)
{
......@@ -8682,7 +7991,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance005, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_006
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance006, TestSize.Level0)
{
......@@ -8693,7 +8001,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance006, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_008
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance008, TestSize.Level0)
{
......@@ -8704,7 +8011,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance008, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_009
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance009, TestSize.Level0)
{
......@@ -8715,7 +8021,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance009, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_010
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance010, TestSize.Level0)
{
......@@ -8726,7 +8031,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance010, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_011
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance011, TestSize.Level0)
{
......@@ -8737,7 +8041,6 @@ HWTEST_F(VfsJffsTest, ItFsJffsPerformance011, TestSize.Level0)
* @tc.name: ItFsJffsPERFORMANCE_012
* @tc.desc: function for VfsJffsTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(VfsJffsTest, ItFsJffsPerformance012, TestSize.Level0)
{
......
......@@ -38,6 +38,7 @@
static void SigPrint(int sig)
{
(void)sig;
return;
}
......
......@@ -48,7 +48,6 @@ public:
* @tc.name: IT_TEST_IO_005
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItTestIo005, TestSize.Level0)
{
......@@ -60,7 +59,6 @@ HWTEST_F(IoTest, ItTestIo005, TestSize.Level0)
* @tc.name: IT_TEST_IO_008
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItTestIo008, TestSize.Level0)
{
......@@ -73,7 +71,6 @@ HWTEST_F(IoTest, ItTestIo008, TestSize.Level0)
* @tc.name: IT_TEST_IO_010
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItTestIo010, TestSize.Level0)
{
......@@ -84,7 +81,6 @@ HWTEST_F(IoTest, ItTestIo010, TestSize.Level0)
* @tc.name: IT_TEST_IO_013
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItTestIo013, TestSize.Level0)
{
......@@ -97,7 +93,6 @@ HWTEST_F(IoTest, ItTestIo013, TestSize.Level0)
* @tc.name: IO_TEST_PSELECT_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_PSELECT_001, TestSize.Level0)
{
......@@ -108,7 +103,6 @@ HWTEST_F(IoTest, IO_TEST_PSELECT_001, TestSize.Level0)
* @tc.name: IO_TEST_PSELECT_002
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_PSELECT_002, TestSize.Level0)
{
......@@ -119,7 +113,6 @@ HWTEST_F(IoTest, IO_TEST_PSELECT_002, TestSize.Level0)
* @tc.name: IO_TEST_PPOLL_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_PPOLL_001, TestSize.Level0)
{
......@@ -130,7 +123,6 @@ HWTEST_F(IoTest, IO_TEST_PPOLL_001, TestSize.Level0)
* @tc.name: IO_TEST_PPOLL_002
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_PPOLL_002, TestSize.Level0)
{
......@@ -141,7 +133,6 @@ HWTEST_F(IoTest, IO_TEST_PPOLL_002, TestSize.Level0)
* @tc.name: IO_TEST_PPOLL_003
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_PPOLL_003, TestSize.Level0)
{
......@@ -152,7 +143,6 @@ HWTEST_F(IoTest, IO_TEST_PPOLL_003, TestSize.Level0)
* @tc.name: IO_TEST_EPOLL_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_EPOLL_001, TestSize.Level0)
......@@ -164,7 +154,6 @@ HWTEST_F(IoTest, IO_TEST_EPOLL_001, TestSize.Level0)
* @tc.name: IO_TEST_EPOLL_002
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_EPOLL_002, TestSize.Level0)
{
......@@ -175,7 +164,6 @@ HWTEST_F(IoTest, IO_TEST_EPOLL_002, TestSize.Level0)
* @tc.name: IT_STDLIB_POLL_002
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdlibPoll002, TestSize.Level0)
{
......@@ -186,7 +174,6 @@ HWTEST_F(IoTest, ItStdlibPoll002, TestSize.Level0)
* @tc.name: IT_STDLIB_POLL_003
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdlibPoll003, TestSize.Level0)
{
......@@ -197,7 +184,6 @@ HWTEST_F(IoTest, ItStdlibPoll003, TestSize.Level0)
* @tc.name: IT_STDIO_PUTWC_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdioPutwc001, TestSize.Level0)
{
......@@ -208,7 +194,6 @@ HWTEST_F(IoTest, ItStdioPutwc001, TestSize.Level0)
* @tc.name: IT_STDIO_READV_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdioReadv001, TestSize.Level0)
{
......@@ -219,7 +204,6 @@ HWTEST_F(IoTest, ItStdioReadv001, TestSize.Level0)
* @tc.name: IT_STDIO_RINDEX_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdioRindex001, TestSize.Level0)
{
......@@ -230,7 +214,6 @@ HWTEST_F(IoTest, ItStdioRindex001, TestSize.Level0)
* @tc.name: IT_STDIO_SETLOGMASK_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdioSetlogmask001, TestSize.Level0)
{
......@@ -241,7 +224,6 @@ HWTEST_F(IoTest, ItStdioSetlogmask001, TestSize.Level0)
* @tc.name: IT_STDLIB_GCVT_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdlibGcvt001, TestSize.Level0)
{
......@@ -252,7 +234,6 @@ HWTEST_F(IoTest, ItStdlibGcvt001, TestSize.Level0)
* @tc.name: IT_LOCALE_LOCALECONV_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItLocaleLocaleconv001, TestSize.Level0)
{
......@@ -263,7 +244,6 @@ HWTEST_F(IoTest, ItLocaleLocaleconv001, TestSize.Level0)
* @tc.name: IT_STDIO_FPUTWS_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdioFputws001, TestSize.Level0)
{
......@@ -274,7 +254,6 @@ HWTEST_F(IoTest, ItStdioFputws001, TestSize.Level0)
* @tc.name: IT_STDIO_FWPRINTF_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdioFwprintf001, TestSize.Level0)
{
......@@ -285,7 +264,6 @@ HWTEST_F(IoTest, ItStdioFwprintf001, TestSize.Level0)
* @tc.name: IT_STDIO_GETC_UNLOCKED_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdioGetcUnlocked001, TestSize.Level0)
{
......@@ -296,7 +274,6 @@ HWTEST_F(IoTest, ItStdioGetcUnlocked001, TestSize.Level0)
* @tc.name: IT_STDIO_MBLEN_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdioMblen001, TestSize.Level0)
{
......@@ -307,7 +284,6 @@ HWTEST_F(IoTest, ItStdioMblen001, TestSize.Level0)
* @tc.name: IT_STDIO_MBRLEN_001
* @tc.desc: function for IoTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, ItStdioMbrlen001, TestSize.Level0)
{
......@@ -318,7 +294,6 @@ HWTEST_F(IoTest, ItStdioMbrlen001, TestSize.Level0)
* @tc.name: IT_STDIO_HASMNTOPT_001
* @tc.desc: function for IoTest-normal testcase
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IT_STDIO_HASMNTOPT_001, TestSize.Level0)
{
......@@ -329,7 +304,6 @@ HWTEST_F(IoTest, IT_STDIO_HASMNTOPT_001, TestSize.Level0)
* @tc.name: IO_TEST_DUPLOCALE_001
* @tc.desc: function for IoTest-dup the locale global pointer
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_DUPLOCALE_001, TestSize.Level0)
{
......@@ -340,7 +314,6 @@ HWTEST_F(IoTest, IO_TEST_DUPLOCALE_001, TestSize.Level0)
* @tc.name: IO_TEST_NL_LANGINFO_001
* @tc.desc: function for IoTest-normal testcase
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_NL_LANGINFO_001, TestSize.Level0)
{
......@@ -351,7 +324,6 @@ HWTEST_F(IoTest, IO_TEST_NL_LANGINFO_001, TestSize.Level0)
* @tc.name: IO_TEST_STRCASECMP_L_001
* @tc.desc: function for IoTest-normal testcase
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_STRCASECMP_L_001, TestSize.Level0)
{
......@@ -362,7 +334,6 @@ HWTEST_F(IoTest, IO_TEST_STRCASECMP_L_001, TestSize.Level0)
* @tc.name: IO_TEST_STRCASECMP_L_002
* @tc.desc: function for IoTest-normal testcase
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_STRCASECMP_L_002, TestSize.Level0)
{
......@@ -373,7 +344,6 @@ HWTEST_F(IoTest, IO_TEST_STRCASECMP_L_002, TestSize.Level0)
* @tc.name: IO_TEST_STRNCASECMP_L_001
* @tc.desc: function for IoTest-normal testcase
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_STRNCASECMP_L_001, TestSize.Level0)
{
......@@ -384,7 +354,6 @@ HWTEST_F(IoTest, IO_TEST_STRNCASECMP_L_001, TestSize.Level0)
* @tc.name: IO_TEST_STRNCASECMP_L_002
* @tc.desc: function for IoTest-normal testcase
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_STRNCASECMP_L_002, TestSize.Level0)
{
......@@ -395,7 +364,6 @@ HWTEST_F(IoTest, IO_TEST_STRNCASECMP_L_002, TestSize.Level0)
* @tc.name: IO_TEST_NL_LANGINFO_l_001
* @tc.desc: function for IoTest-query language and locale information
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_NL_LANGINFO_l_001, TestSize.Level0)
{
......@@ -406,7 +374,6 @@ HWTEST_F(IoTest, IO_TEST_NL_LANGINFO_l_001, TestSize.Level0)
* @tc.name: IO_TEST_DNGETTEXT_001
* @tc.desc: function for IoTest-print the translated string1 or string2
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_DNGETTEXT_001, TestSize.Level0)
{
......@@ -417,7 +384,6 @@ HWTEST_F(IoTest, IO_TEST_DNGETTEXT_001, TestSize.Level0)
* @tc.name: IO_TEST_DNGETTEXT_002
* @tc.desc: function for IoTest-innormal testcases
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_DNGETTEXT_002, TestSize.Level0)
{
......@@ -428,7 +394,6 @@ HWTEST_F(IoTest, IO_TEST_DNGETTEXT_002, TestSize.Level0)
* @tc.name: IO_TEST_DCNGETTEXT_001
* @tc.desc: function for IoTest-print the translated string1 or string2 with locale parameter
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_DCNGETTEXT_001, TestSize.Level0)
{
......@@ -439,7 +404,6 @@ HWTEST_F(IoTest, IO_TEST_DCNGETTEXT_001, TestSize.Level0)
* @tc.name: IO_TEST_DCNGETTEXT_002
* @tc.desc: function for IoTest-innormal testcases
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_DCNGETTEXT_002, TestSize.Level0)
{
......@@ -449,7 +413,6 @@ HWTEST_F(IoTest, IO_TEST_DCNGETTEXT_002, TestSize.Level0)
* @tc.name: IO_TEST_DCGETTEXT_001
* @tc.desc: function for IoTest-print the translated string with locale parameter
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_DCGETTEXT_001, TestSize.Level0)
{
......@@ -460,7 +423,6 @@ HWTEST_F(IoTest, IO_TEST_DCGETTEXT_001, TestSize.Level0)
* @tc.name: IO_TEST_DCGETTEXT_002
* @tc.desc: function for IoTest-innormal testcases
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_DCGETTEXT_002, TestSize.Level0)
{
......@@ -471,7 +433,6 @@ HWTEST_F(IoTest, IO_TEST_DCGETTEXT_002, TestSize.Level0)
* @tc.name: IO_TEST_GETTEXT_001
* @tc.desc: function for IoTest-normal testcases
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_GETTEXT_001, TestSize.Level0)
{
......@@ -482,7 +443,6 @@ HWTEST_F(IoTest, IO_TEST_GETTEXT_001, TestSize.Level0)
* @tc.name: IO_TEST_LOCALE_001
* @tc.desc: function for IoTest-normal testcases
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_LOCALE_001, TestSize.Level0)
{
......@@ -493,7 +453,6 @@ HWTEST_F(IoTest, IO_TEST_LOCALE_001, TestSize.Level0)
* @tc.name: IO_TEST_LOCALE_002
* @tc.desc: function for IoTest-innormal testcases
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_LOCALE_002, TestSize.Level0)
{
......@@ -504,7 +463,6 @@ HWTEST_F(IoTest, IO_TEST_LOCALE_002, TestSize.Level0)
* @tc.name: IO_TEST_STRFMON_L_001
* @tc.desc: function for IoTest-normal testcases
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_STRFMON_L_001, TestSize.Level0)
{
......@@ -515,7 +473,6 @@ HWTEST_F(IoTest, IO_TEST_STRFMON_L_001, TestSize.Level0)
* @tc.name: IO_TEST_STRFMON_L_002
* @tc.desc: function for IoTest-innormal testcases
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_STRFMON_L_002, TestSize.Level0)
{
......@@ -526,7 +483,6 @@ HWTEST_F(IoTest, IO_TEST_STRFMON_L_002, TestSize.Level0)
* @tc.name: IO_TEST_NGETTEXT_001
* @tc.desc: function for IoTest-normal testcases
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(IoTest, IO_TEST_NGETTEXT_001, TestSize.Level0)
{
......
......@@ -47,7 +47,6 @@ public:
* @tc.name: IT_TEST_MISC_001
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, ItTestMisc001, TestSize.Level0)
{
......@@ -58,7 +57,6 @@ HWTEST_F(MiscTest, ItTestMisc001, TestSize.Level0)
* @tc.name: IT_TEST_MISC_002
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, ItTestMisc002, TestSize.Level0)
{
......@@ -69,7 +67,6 @@ HWTEST_F(MiscTest, ItTestMisc002, TestSize.Level0)
* @tc.name: IT_TEST_MISC_003
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, ItTestMisc003, TestSize.Level0)
{
......@@ -80,7 +77,6 @@ HWTEST_F(MiscTest, ItTestMisc003, TestSize.Level0)
* @tc.name: IT_TEST_MISC_004
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, ItTestMisc004, TestSize.Level0)
{
......@@ -91,7 +87,6 @@ HWTEST_F(MiscTest, ItTestMisc004, TestSize.Level0)
* @tc.name: IT_TEST_MISC_005
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, ItTestMisc005, TestSize.Level0)
{
......@@ -102,7 +97,6 @@ HWTEST_F(MiscTest, ItTestMisc005, TestSize.Level0)
* @tc.name: IT_TEST_MISC_014
* @tc.desc: function for tmpnam test
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, IT_TEST_MISC_014, TestSize.Level0)
{
......@@ -115,7 +109,6 @@ HWTEST_F(MiscTest, IT_TEST_MISC_014, TestSize.Level0)
* @tc.name: IT_TEST_MISC_006
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, ItTestMisc006, TestSize.Level0)
{
......@@ -126,7 +119,6 @@ HWTEST_F(MiscTest, ItTestMisc006, TestSize.Level0)
* @tc.name: IT_TEST_MISC_007
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, ItTestMisc007, TestSize.Level0)
{
......@@ -137,7 +129,6 @@ HWTEST_F(MiscTest, ItTestMisc007, TestSize.Level0)
* @tc.name: IT_TEST_MISC_008
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, ItTestMisc008, TestSize.Level0)
{
......@@ -148,7 +139,6 @@ HWTEST_F(MiscTest, ItTestMisc008, TestSize.Level0)
* @tc.name: IT_TEST_MISC_009
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, ItTestMisc009, TestSize.Level0)
{
......@@ -159,7 +149,6 @@ HWTEST_F(MiscTest, ItTestMisc009, TestSize.Level0)
* @tc.name: IT_TEST_MISC_010
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
/*HWTEST_F(MiscTest, ItTestMisc010, TestSize.Level0)
{
......@@ -170,7 +159,6 @@ HWTEST_F(MiscTest, ItTestMisc009, TestSize.Level0)
* @tc.name: IT_TEST_MISC_011
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
/*HWTEST_F(MiscTest, ItTestMisc011, TestSize.Level0)
{
......@@ -181,7 +169,6 @@ HWTEST_F(MiscTest, ItTestMisc009, TestSize.Level0)
* @tc.name: IT_TEST_MISC_012
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(MiscTest, ItTestMisc012, TestSize.Level0)
{
......@@ -192,7 +179,6 @@ HWTEST_F(MiscTest, ItTestMisc012, TestSize.Level0)
* @tc.name: IT_TEST_MISC_013
* @tc.desc: function for MiscTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
/*HWTEST_F(MiscTest, ItTestMisc013, TestSize.Level0)
{
......
......@@ -48,7 +48,6 @@ public:
* @tc.name: IT_POSIX_MEM_001
* @tc.desc: function for PosixMemTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMemTest, ItPosixMem001, TestSize.Level0)
{
......@@ -59,7 +58,6 @@ HWTEST_F(PosixMemTest, ItPosixMem001, TestSize.Level0)
* @tc.name: IT_POSIX_MEM_003
* @tc.desc: function for PosixMemTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMemTest, ItPosixMem003, TestSize.Level0)
{
......
......@@ -115,7 +115,6 @@ public:
* @tc.name: IT_POSIX_QUEUE_001
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue001, TestSize.Level0)
{
......@@ -126,7 +125,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue001, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_003
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue003, TestSize.Level0)
{
......@@ -137,7 +135,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue003, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_053
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue053, TestSize.Level0)
{
......@@ -148,7 +145,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue053, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_028
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue028, TestSize.Level0)
{
......@@ -159,7 +155,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue028, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_062
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue062, TestSize.Level0)
{
......@@ -173,7 +168,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue062, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_002
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue002, TestSize.Level0)
{
......@@ -184,7 +178,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue002, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_005
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue005, TestSize.Level0)
{
......@@ -195,7 +188,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue005, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_008
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue008, TestSize.Level0)
{
......@@ -206,7 +198,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue008, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_011
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue011, TestSize.Level0)
{
......@@ -217,7 +208,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue011, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_013
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue013, TestSize.Level0)
{
......@@ -228,7 +218,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue013, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_014
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue014, TestSize.Level0)
{
......@@ -239,7 +228,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue014, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_015
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue015, TestSize.Level0)
{
......@@ -250,7 +238,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue015, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_016
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue016, TestSize.Level0)
{
......@@ -262,7 +249,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue016, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_113
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue113, TestSize.Level0)
{
......@@ -273,7 +259,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue113, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_018
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue018, TestSize.Level0)
{
......@@ -284,7 +269,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue018, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_019
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue019, TestSize.Level0)
{
......@@ -295,7 +279,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue019, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_020
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue020, TestSize.Level0)
{
......@@ -306,7 +289,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue020, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_021
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue021, TestSize.Level0)
{
......@@ -317,7 +299,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue021, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_025
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue025, TestSize.Level0)
{
......@@ -328,7 +309,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue025, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_026
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue026, TestSize.Level0)
{
......@@ -339,7 +319,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue026, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_027
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue027, TestSize.Level0)
{
......@@ -350,7 +329,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue027, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_030
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue030, TestSize.Level0)
{
......@@ -361,7 +339,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue030, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_031
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue031, TestSize.Level0)
{
......@@ -372,7 +349,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue031, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_032
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue032, TestSize.Level0)
{
......@@ -383,7 +359,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue032, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_033
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue033, TestSize.Level0)
{
......@@ -394,7 +369,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue033, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_036
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue036, TestSize.Level0)
{
......@@ -405,7 +379,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue036, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_038
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue038, TestSize.Level0)
{
......@@ -416,7 +389,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue038, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_040
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue040, TestSize.Level0)
{
......@@ -428,7 +400,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue040, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_041
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue041, TestSize.Level0)
{
......@@ -440,7 +411,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue041, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_042
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue042, TestSize.Level0)
{
......@@ -451,7 +421,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue042, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_044
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue044, TestSize.Level0)
{
......@@ -462,7 +431,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue044, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_046
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue046, TestSize.Level0)
{
......@@ -473,7 +441,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue046, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_047
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue047, TestSize.Level0)
{
......@@ -484,7 +451,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue047, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_048
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue048, TestSize.Level0)
{
......@@ -495,7 +461,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue048, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_049
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue049, TestSize.Level0)
{
......@@ -506,7 +471,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue049, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_050
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue050, TestSize.Level0)
{
......@@ -517,7 +481,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue050, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_052
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue052, TestSize.Level0)
{
......@@ -528,7 +491,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue052, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_054
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue054, TestSize.Level0)
{
......@@ -539,7 +501,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue054, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_055
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue055, TestSize.Level0)
{
......@@ -550,7 +511,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue055, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_056
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue056, TestSize.Level0)
{
......@@ -561,7 +521,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue056, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_057
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue057, TestSize.Level0)
{
......@@ -572,7 +531,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue057, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_058
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue058, TestSize.Level0)
{
......@@ -583,7 +541,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue058, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_060
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue060, TestSize.Level0)
{
......@@ -594,7 +551,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue060, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_061
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue061, TestSize.Level0)
{
......@@ -605,7 +561,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue061, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_063
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue063, TestSize.Level0)
{
......@@ -616,7 +571,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue063, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_064
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue064, TestSize.Level0)
{
......@@ -627,7 +581,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue064, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_065
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue065, TestSize.Level0)
{
......@@ -638,7 +591,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue065, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_066
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue066, TestSize.Level0)
{
......@@ -649,7 +601,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue066, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_067
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue067, TestSize.Level0)
{
......@@ -660,7 +611,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue067, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_069
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue069, TestSize.Level0)
{
......@@ -671,7 +621,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue069, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_070
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue070, TestSize.Level0)
{
......@@ -682,7 +631,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue070, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_071
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue071, TestSize.Level0)
{
......@@ -693,7 +641,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue071, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_072
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue072, TestSize.Level0)
{
......@@ -704,7 +651,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue072, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_073
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue073, TestSize.Level0)
{
......@@ -715,7 +661,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue073, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_074
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue074, TestSize.Level0)
{
......@@ -726,7 +671,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue074, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_075
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue075, TestSize.Level0)
{
......@@ -737,7 +681,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue075, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_080
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue080, TestSize.Level0)
{
......@@ -748,7 +691,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue080, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_081
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue081, TestSize.Level0)
{
......@@ -759,7 +701,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue081, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_082
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue082, TestSize.Level0)
{
......@@ -770,7 +711,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue082, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_083
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue083, TestSize.Level0)
{
......@@ -781,7 +721,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue083, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_084
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue084, TestSize.Level0)
{
......@@ -792,7 +731,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue084, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_085
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue085, TestSize.Level0)
{
......@@ -803,7 +741,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue085, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_086
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue086, TestSize.Level0)
{
......@@ -814,7 +751,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue086, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_087
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue087, TestSize.Level0)
{
......@@ -825,7 +761,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue087, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_088
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue088, TestSize.Level0)
{
......@@ -836,7 +771,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue088, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_089
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue089, TestSize.Level0)
{
......@@ -849,7 +783,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue089, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_090
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue090, TestSize.Level0)
{
......@@ -861,7 +794,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue090, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_091
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue091, TestSize.Level0)
{
......@@ -872,7 +804,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue091, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_093
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue093, TestSize.Level0)
{
......@@ -883,7 +814,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue093, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_094
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue094, TestSize.Level0)
{
......@@ -894,7 +824,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue094, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_095
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue095, TestSize.Level0)
{
......@@ -905,7 +834,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue095, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_096
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue096, TestSize.Level0)
{
......@@ -916,7 +844,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue096, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_097
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue097, TestSize.Level0)
{
......@@ -927,7 +854,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue097, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_098
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue098, TestSize.Level0)
{
......@@ -938,7 +864,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue098, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_100
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue100, TestSize.Level0)
{
......@@ -949,7 +874,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue100, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_101
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue101, TestSize.Level0)
{
......@@ -960,7 +884,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue101, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_102
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue102, TestSize.Level0)
{
......@@ -971,7 +894,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue102, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_103
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue103, TestSize.Level0)
{
......@@ -982,7 +904,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue103, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_104
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue104, TestSize.Level0)
{
......@@ -993,7 +914,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue104, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_106
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue106, TestSize.Level0)
{
......@@ -1004,7 +924,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue106, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_108
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue108, TestSize.Level0)
{
......@@ -1015,7 +934,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue108, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_109
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue109, TestSize.Level0)
{
......@@ -1026,7 +944,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue109, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_110
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue110, TestSize.Level0)
{
......@@ -1038,7 +955,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue110, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_127
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue127, TestSize.Level0)
{
......@@ -1049,7 +965,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue127, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_128
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue128, TestSize.Level0)
{
......@@ -1060,7 +975,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue128, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_129
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue129, TestSize.Level0)
{
......@@ -1071,7 +985,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue129, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_130
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue130, TestSize.Level0)
{
......@@ -1082,7 +995,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue130, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_144
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue144, TestSize.Level0)
{
......@@ -1093,7 +1005,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue144, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_147
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue147, TestSize.Level0)
{
......@@ -1104,7 +1015,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue147, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_148
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue148, TestSize.Level0)
{
......@@ -1115,7 +1025,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue148, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_149
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue149, TestSize.Level0)
{
......@@ -1126,7 +1035,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue149, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_150
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue150, TestSize.Level0)
{
......@@ -1137,7 +1045,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue150, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_151
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue151, TestSize.Level0)
{
......@@ -1148,7 +1055,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue151, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_152
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue152, TestSize.Level0)
{
......@@ -1159,7 +1065,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue152, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_153
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue153, TestSize.Level0)
{
......@@ -1170,7 +1075,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue153, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_154
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue154, TestSize.Level0)
{
......@@ -1181,7 +1085,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue154, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_155
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue155, TestSize.Level0)
{
......@@ -1192,7 +1095,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue155, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_156
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue156, TestSize.Level0)
{
......@@ -1203,7 +1105,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue156, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_164
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue164, TestSize.Level0)
{
......@@ -1214,7 +1115,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue164, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_165
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue165, TestSize.Level0)
{
......@@ -1225,7 +1125,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue165, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_166
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue166, TestSize.Level0)
{
......@@ -1236,7 +1135,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue166, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_168
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue168, TestSize.Level0)
{
......@@ -1247,7 +1145,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue168, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_169
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue169, TestSize.Level0)
{
......@@ -1258,7 +1155,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue169, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_173
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue173, TestSize.Level0)
{
......@@ -1269,7 +1165,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue173, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_175
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue175, TestSize.Level0)
{
......@@ -1280,7 +1175,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue175, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_176
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue176, TestSize.Level0)
{
......@@ -1291,7 +1185,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue176, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_187
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue187, TestSize.Level0)
{
......@@ -1303,7 +1196,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue187, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_200
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue200, TestSize.Level0)
{
......@@ -1314,7 +1206,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue200, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_201
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue201, TestSize.Level0)
{
......@@ -1325,7 +1216,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue201, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_202
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue202, TestSize.Level0)
{
......@@ -1336,7 +1226,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue202, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_203
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue203, TestSize.Level0)
{
......@@ -1348,7 +1237,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue203, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_204
* @tc.desc: function for PosixMqueueTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue204, TestSize.Level0)
{
......@@ -1361,7 +1249,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue204, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_205
* @tc.desc: function for mq_notify:Set sigev_notify to SIGEV_NONE
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue205, TestSize.Level0)
{
......@@ -1372,7 +1259,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue205, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_206
* @tc.desc: function for mq_notify:The function returns a failure and the error code is verified.
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue206, TestSize.Level0)
{
......@@ -1383,7 +1269,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue206, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_207
* @tc.desc: function for mq_notify:Set sigev_notify to SIGEV_NONE
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue207, TestSize.Level0)
{
......@@ -1394,7 +1279,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue207, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_208
* @tc.desc: function for mq_notify:The message queue is not empty.
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixMqueueTest, ItPosixQueue208, TestSize.Level0)
{
......@@ -1405,7 +1289,6 @@ HWTEST_F(PosixMqueueTest, ItPosixQueue208, TestSize.Level0)
* @tc.name: IT_POSIX_QUEUE_209
* @tc.desc: function for mq_notify:The message queue has waiters.
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
**/
HWTEST_F(PosixMqueueTest, ItPosixQueue209, TestSize.Level0)
{
......
......@@ -88,7 +88,7 @@ static UINT32 Testcase(VOID)
ICUNIT_ASSERT_EQUAL(rc, 0, rc);
ICUNIT_ASSERT_EQUAL(g_t1Start, 2, g_t1Start);
g_signaled = 0; // add by d00346846
g_signaled = 0;
rc = pthread_cond_destroy(&g_td.cond);
ICUNIT_ASSERT_EQUAL(rc, ENOERR, rc);
......
......@@ -232,7 +232,6 @@ public:
* @tc.name: IT_POSIX_PTHREAD_003
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread003, TestSize.Level0)
{
......@@ -243,7 +242,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread003, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_004
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread004, TestSize.Level0)
{
......@@ -254,7 +252,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread004, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_005
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread005, TestSize.Level0)
{
......@@ -265,7 +262,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread005, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_006
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread006, TestSize.Level0)
{
......@@ -276,7 +272,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread006, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_018
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread018, TestSize.Level0)
{
......@@ -287,7 +282,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread018, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_019
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread019, TestSize.Level0)
{
......@@ -298,7 +292,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread019, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_020
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread020, TestSize.Level0)
{
......@@ -309,7 +302,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread020, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_021
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread021, TestSize.Level0)
{
......@@ -320,7 +312,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread021, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_022
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread022, TestSize.Level0)
{
......@@ -334,7 +325,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread022, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_001
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread001, TestSize.Level0)
{
......@@ -345,7 +335,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread001, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_002
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread002, TestSize.Level0)
{
......@@ -356,7 +345,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread002, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_007
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread007, TestSize.Level0)
{
......@@ -367,7 +355,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread007, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_010
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread010, TestSize.Level0)
{
......@@ -378,7 +365,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread010, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_011
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread011, TestSize.Level0)
{
......@@ -389,7 +375,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread011, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_013
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread013, TestSize.Level0)
{
......@@ -400,7 +385,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread013, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_023
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread023, TestSize.Level0)
{
......@@ -411,7 +395,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread023, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_025
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread025, TestSize.Level0)
{
......@@ -422,7 +405,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread025, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_026
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread026, TestSize.Level0)
{
......@@ -433,7 +415,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread026, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_027
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread027, TestSize.Level0)
{
......@@ -444,7 +425,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread027, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_028
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread028, TestSize.Level0)
{
......@@ -455,7 +435,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread028, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_029
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread029, TestSize.Level0)
{
......@@ -466,7 +445,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread029, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_030
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread030, TestSize.Level0)
{
......@@ -477,7 +455,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread030, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_031
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread031, TestSize.Level0)
{
......@@ -488,7 +465,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread031, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_034
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread034, TestSize.Level0)
{
......@@ -499,7 +475,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread034, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_035
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread035, TestSize.Level0)
{
......@@ -510,7 +485,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread035, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_039
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread039, TestSize.Level0)
{
......@@ -521,7 +495,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread039, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_040
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread040, TestSize.Level0)
{
......@@ -532,7 +505,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread040, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_042
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread042, TestSize.Level0)
{
......@@ -543,7 +515,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread042, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_044
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread044, TestSize.Level0)
{
......@@ -554,7 +525,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread044, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_045
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread045, TestSize.Level0)
{
......@@ -565,7 +535,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread045, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_046
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread046, TestSize.Level0)
{
......@@ -576,7 +545,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread046, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_051
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread051, TestSize.Level0)
{
......@@ -587,7 +555,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread051, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_052
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread052, TestSize.Level0)
{
......@@ -598,7 +565,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread052, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_053
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread053, TestSize.Level0)
{
......@@ -609,7 +575,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread053, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_054
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread054, TestSize.Level0)
{
......@@ -620,7 +585,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread054, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_055
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread055, TestSize.Level0)
{
......@@ -631,7 +595,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread055, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_057
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread057, TestSize.Level0)
{
......@@ -642,7 +605,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread057, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_059
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread059, TestSize.Level0)
{
......@@ -653,7 +615,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread059, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_060
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread060, TestSize.Level0)
{
......@@ -664,7 +625,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread060, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_069
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread069, TestSize.Level0)
{
......@@ -675,7 +635,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread069, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_070
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread070, TestSize.Level0)
{
......@@ -686,7 +645,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread070, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_071
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread071, TestSize.Level0)
{
......@@ -697,7 +655,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread071, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_072
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread072, TestSize.Level0)
{
......@@ -708,7 +665,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread072, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_073
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread073, TestSize.Level0)
{
......@@ -719,7 +675,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread073, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_074
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread074, TestSize.Level0)
{
......@@ -730,7 +685,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread074, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_078
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread078, TestSize.Level0)
{
......@@ -741,7 +695,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread078, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_079
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread079, TestSize.Level0)
{
......@@ -752,7 +705,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread079, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_080
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread080, TestSize.Level0)
{
......@@ -763,7 +715,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread080, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_081
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread081, TestSize.Level0)
{
......@@ -774,7 +725,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread081, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_082
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread082, TestSize.Level0)
{
......@@ -785,7 +735,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread082, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_083
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread083, TestSize.Level0)
{
......@@ -796,7 +745,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread083, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_084
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread084, TestSize.Level0)
{
......@@ -807,7 +755,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread084, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_085
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread085, TestSize.Level0)
{
......@@ -818,7 +765,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread085, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_087
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread087, TestSize.Level0)
{
......@@ -829,7 +775,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread087, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_088
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread088, TestSize.Level0)
{
......@@ -840,7 +785,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread088, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_089
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread089, TestSize.Level0)
{
......@@ -851,7 +795,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread089, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_090
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread090, TestSize.Level0)
{
......@@ -862,7 +805,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread090, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_092
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread092, TestSize.Level0)
{
......@@ -873,7 +815,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread092, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_091
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread091, TestSize.Level0)
{
......@@ -885,7 +826,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread091, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_094
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread094, TestSize.Level0)
{
......@@ -897,7 +837,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread094, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_095
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread095, TestSize.Level0)
{
......@@ -908,7 +847,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread095, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_106
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread106, TestSize.Level0)
{
......@@ -919,7 +857,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread106, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_107
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread107, TestSize.Level0)
{
......@@ -930,7 +867,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread107, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_116
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread116, TestSize.Level0)
{
......@@ -941,7 +877,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread116, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_123
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread123, TestSize.Level0)
{
......@@ -952,7 +887,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread123, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_124
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread124, TestSize.Level0)
{
......@@ -963,7 +897,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread124, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_125
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread125, TestSize.Level0)
{
......@@ -974,7 +907,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread125, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_127
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread127, TestSize.Level0)
{
......@@ -985,7 +917,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread127, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_129
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread129, TestSize.Level0)
{
......@@ -996,7 +927,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread129, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_132
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread132, TestSize.Level0)
{
......@@ -1007,7 +937,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread132, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_133
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread133, TestSize.Level0)
{
......@@ -1018,7 +947,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread133, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_134
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread134, TestSize.Level0)
{
......@@ -1029,7 +957,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread134, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_136
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread136, TestSize.Level0)
{
......@@ -1040,7 +967,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread136, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_138
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread138, TestSize.Level0)
{
......@@ -1051,7 +977,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread138, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_141
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread141, TestSize.Level0)
{
......@@ -1062,7 +987,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread141, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_142
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread142, TestSize.Level0)
{
......@@ -1073,7 +997,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread142, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_144
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread144, TestSize.Level0)
{
......@@ -1084,7 +1007,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread144, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_152
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread152, TestSize.Level0)
{
......@@ -1095,7 +1017,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread152, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_154
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread154, TestSize.Level0)
{
......@@ -1106,7 +1027,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread154, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_166
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread166, TestSize.Level0)
{
......@@ -1117,7 +1037,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread166, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_167
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread167, TestSize.Level0)
{
......@@ -1128,7 +1047,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread167, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_173
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread173, TestSize.Level0)
{
......@@ -1139,7 +1057,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread173, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_175
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread175, TestSize.Level0)
{
......@@ -1150,7 +1067,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread175, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_176
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread176, TestSize.Level0)
{
......@@ -1161,7 +1077,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread176, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_177
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread177, TestSize.Level0)
{
......@@ -1172,7 +1087,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread177, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_182
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread182, TestSize.Level0)
{
......@@ -1183,7 +1097,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread182, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_185
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread185, TestSize.Level0)
{
......@@ -1194,7 +1107,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread185, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_186
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread186, TestSize.Level0)
{
......@@ -1205,7 +1117,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread186, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_187
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread187, TestSize.Level0)
{
......@@ -1216,7 +1127,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread187, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_188
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread188, TestSize.Level0)
{
......@@ -1227,7 +1137,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread188, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_193
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread193, TestSize.Level0)
{
......@@ -1238,7 +1147,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread193, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_194
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread194, TestSize.Level0)
{
......@@ -1249,7 +1157,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread194, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_200
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread200, TestSize.Level0)
{
......@@ -1260,7 +1167,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread200, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_203
* @tc.desc: function for pthread concurrency
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread203, TestSize.Level0)
{
......@@ -1271,7 +1177,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread203, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_204
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread204, TestSize.Level0)
{
......@@ -1282,7 +1187,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread204, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_205
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread205, TestSize.Level0)
{
......@@ -1293,7 +1197,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread205, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_206
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread206, TestSize.Level0)
{
......@@ -1304,7 +1207,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread206, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_209
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread209, TestSize.Level0)
{
......@@ -1315,7 +1217,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread209, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_213
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread213, TestSize.Level0)
{
......@@ -1326,7 +1227,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread213, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_217
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread217, TestSize.Level0)
{
......@@ -1337,7 +1237,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread217, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_218
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread218, TestSize.Level0)
{
......@@ -1348,7 +1247,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread218, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_224
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread224, TestSize.Level0)
{
......@@ -1359,7 +1257,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread224, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_226
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread226, TestSize.Level0)
{
......@@ -1370,7 +1267,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread226, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_233
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread233, TestSize.Level0)
{
......@@ -1381,7 +1277,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread233, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_238
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread238, TestSize.Level0)
{
......@@ -1392,7 +1287,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread238, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_239
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread239, TestSize.Level0)
{
......@@ -1403,7 +1297,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread239, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_240
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread240, TestSize.Level0)
{
......@@ -1414,7 +1307,6 @@ HWTEST_F(PosixPthreadTest, ItPosixPthread240, TestSize.Level0)
* @tc.name: IT_POSIX_PTHREAD_241
* @tc.desc: function for PosixPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(PosixPthreadTest, ItPosixPthread241, TestSize.Level0)
{
......
......@@ -33,8 +33,7 @@
static int TestCase(void)
{
char *name = getlogin();
ICUNIT_ASSERT_NOT_EQUAL(name, "USER1", NULL);
int ret = getlogin_r(name, strlen(name) + 1);
int ret = getlogin_r(name, sizeof(name)); // Abnormal Scenario Testing
ICUNIT_ASSERT_EQUAL(ret, 6, ret);
ret = setenv("LOGNAME", "USER1", 1);
ICUNIT_ASSERT_EQUAL(ret, 0, ret);
......@@ -57,4 +56,4 @@ static int TestCase(void)
VOID ItTestSys026(VOID)
{
TEST_ADD_CASE("IT_TEST_SYS_026", TestCase, TEST_POSIX, TEST_MEM, TEST_LEVEL0, TEST_FUNCTION);
}
\ No newline at end of file
}
......@@ -51,7 +51,6 @@ public:
* @tc.name: IT_TEST_SYS_004
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys004, TestSize.Level0)
{
......@@ -62,7 +61,6 @@ HWTEST_F(SysTest, ItTestSys004, TestSize.Level0)
* @tc.name: IT_TEST_SYS_005
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys005, TestSize.Level0)
{
......@@ -73,7 +71,6 @@ HWTEST_F(SysTest, ItTestSys005, TestSize.Level0)
* @tc.name: IT_TEST_SYS_006
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys006, TestSize.Level0)
{
......@@ -84,7 +81,6 @@ HWTEST_F(SysTest, ItTestSys006, TestSize.Level0)
* @tc.name: IT_TEST_SYS_007
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys007, TestSize.Level0)
{
......@@ -95,7 +91,6 @@ HWTEST_F(SysTest, ItTestSys007, TestSize.Level0)
* @tc.name: IT_TEST_SYS_008
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys008, TestSize.Level0)
{
......@@ -106,7 +101,6 @@ HWTEST_F(SysTest, ItTestSys008, TestSize.Level0)
* @tc.name: IT_TEST_SYS_009
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys009, TestSize.Level0)
{
......@@ -117,7 +111,6 @@ HWTEST_F(SysTest, ItTestSys009, TestSize.Level0)
* @tc.name: IT_TEST_SYS_010
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys010, TestSize.Level0)
{
......@@ -128,7 +121,6 @@ HWTEST_F(SysTest, ItTestSys010, TestSize.Level0)
* @tc.name: IT_TEST_SYS_012
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys012, TestSize.Level0)
{
......@@ -139,7 +131,6 @@ HWTEST_F(SysTest, ItTestSys012, TestSize.Level0)
* @tc.name: IT_TEST_SYS_013
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys013, TestSize.Level0)
{
......@@ -150,7 +141,6 @@ HWTEST_F(SysTest, ItTestSys013, TestSize.Level0)
* @tc.name: IT_TEST_SYS_014
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys014, TestSize.Level0)
{
......@@ -161,7 +151,6 @@ HWTEST_F(SysTest, ItTestSys014, TestSize.Level0)
* @tc.name: IT_TEST_SYS_015
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys015, TestSize.Level0)
{
......@@ -172,7 +161,6 @@ HWTEST_F(SysTest, ItTestSys015, TestSize.Level0)
* @tc.name: IT_TEST_SYS_016
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys016, TestSize.Level0)
{
......@@ -183,7 +171,6 @@ HWTEST_F(SysTest, ItTestSys016, TestSize.Level0)
* @tc.name: IT_TEST_SYS_017
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys017, TestSize.Level0)
{
......@@ -194,7 +181,6 @@ HWTEST_F(SysTest, ItTestSys017, TestSize.Level0)
* @tc.name: IT_TEST_SYS_029
* @tc.desc: function for ftok exception test
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys029, TestSize.Level0)
{
......@@ -205,7 +191,6 @@ HWTEST_F(SysTest, ItTestSys029, TestSize.Level0)
* @tc.name: IT_TEST_SYS_030
* @tc.desc: function for sigsetjmp siglongjmp test
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, IT_TEST_SYS_030, TestSize.Level0)
{
......@@ -216,7 +201,6 @@ HWTEST_F(SysTest, IT_TEST_SYS_030, TestSize.Level0)
* @tc.name: IT_TEST_SYS_031
* @tc.desc: function for ctermid test
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, IT_TEST_SYS_031, TestSize.Level0)
{
......@@ -229,7 +213,6 @@ HWTEST_F(SysTest, IT_TEST_SYS_031, TestSize.Level0)
* @tc.name: IT_TEST_SYS_001
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys001, TestSize.Level0)
{
......@@ -240,7 +223,6 @@ HWTEST_F(SysTest, ItTestSys001, TestSize.Level0)
* @tc.name: IT_TEST_SYS_018
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys018, TestSize.Level0)
{
......@@ -251,7 +233,6 @@ HWTEST_F(SysTest, ItTestSys018, TestSize.Level0)
* @tc.name: IT_TEST_SYS_019
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys019, TestSize.Level0)
{
......@@ -262,7 +243,6 @@ HWTEST_F(SysTest, ItTestSys019, TestSize.Level0)
* @tc.name: IT_TEST_SYS_020
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys020, TestSize.Level0)
{
......@@ -273,7 +253,6 @@ HWTEST_F(SysTest, ItTestSys020, TestSize.Level0)
* @tc.name: IT_TEST_SYS_021
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys021, TestSize.Level0)
{
......@@ -284,7 +263,6 @@ HWTEST_F(SysTest, ItTestSys021, TestSize.Level0)
* @tc.name: IT_TEST_SYS_022
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys022, TestSize.Level0)
{
......@@ -295,7 +273,6 @@ HWTEST_F(SysTest, ItTestSys022, TestSize.Level0)
* @tc.name: IT_TEST_SYS_023
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys023, TestSize.Level0)
{
......@@ -306,7 +283,6 @@ HWTEST_F(SysTest, ItTestSys023, TestSize.Level0)
* @tc.name: IT_TEST_SYS_024
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys024, TestSize.Level0)
{
......@@ -317,7 +293,6 @@ HWTEST_F(SysTest, ItTestSys024, TestSize.Level0)
* @tc.name: IT_TEST_SYS_025
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys025, TestSize.Level0)
{
......@@ -328,7 +303,6 @@ HWTEST_F(SysTest, ItTestSys025, TestSize.Level0)
* @tc.name: IT_TEST_SYS_025
* @tc.desc: function for SysTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys026, TestSize.Level0)
{
......@@ -339,7 +313,6 @@ HWTEST_F(SysTest, ItTestSys026, TestSize.Level0)
* @tc.name: IT_TEST_SYS_027
* @tc.desc: function for ftok normal test
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys027, TestSize.Level0)
{
......@@ -350,7 +323,6 @@ HWTEST_F(SysTest, ItTestSys027, TestSize.Level0)
* @tc.name: ItTestSys028
* @tc.desc: function for nice:set pthread priority
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SysTest, ItTestSys028, TestSize.Level0)
{
......
......@@ -47,7 +47,6 @@ public:
* @tc.name: ClockTestSmoke
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTestSmoke, TestSize.Level0)
{
......@@ -60,7 +59,6 @@ HWTEST_F(TimeClockTest, ClockTestSmoke, TestSize.Level0)
* @tc.name: ClockTest001
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTest001, TestSize.Level0)
{
......@@ -71,7 +69,6 @@ HWTEST_F(TimeClockTest, ClockTest001, TestSize.Level0)
* @tc.name: ClockTest002
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTest002, TestSize.Level0)
{
......@@ -82,7 +79,6 @@ HWTEST_F(TimeClockTest, ClockTest002, TestSize.Level0)
* @tc.name: ClockTest003
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTest003, TestSize.Level0)
{
......@@ -93,7 +89,6 @@ HWTEST_F(TimeClockTest, ClockTest003, TestSize.Level0)
* @tc.name: ClockTest004
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTest004, TestSize.Level0)
{
......@@ -104,7 +99,6 @@ HWTEST_F(TimeClockTest, ClockTest004, TestSize.Level0)
* @tc.name: ClockTest005
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTest005, TestSize.Level0)
{
......@@ -115,7 +109,6 @@ HWTEST_F(TimeClockTest, ClockTest005, TestSize.Level0)
* @tc.name: ClockTest006
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTest006, TestSize.Level0)
{
......@@ -126,7 +119,6 @@ HWTEST_F(TimeClockTest, ClockTest006, TestSize.Level0)
* @tc.name: ClockTest007
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTest007, TestSize.Level0)
{
......@@ -137,7 +129,6 @@ HWTEST_F(TimeClockTest, ClockTest007, TestSize.Level0)
* @tc.name: ClockTest008
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTest008, TestSize.Level0)
{
......@@ -148,7 +139,6 @@ HWTEST_F(TimeClockTest, ClockTest008, TestSize.Level0)
* @tc.name: ClockTest009
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTest009, TestSize.Level0)
{
......@@ -159,7 +149,6 @@ HWTEST_F(TimeClockTest, ClockTest009, TestSize.Level0)
* @tc.name: ClockTest010
* @tc.desc: function for TimeClockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeClockTest, ClockTest010, TestSize.Level0)
{
......
......@@ -47,7 +47,6 @@ public:
* @tc.name: TimerTest001
* @tc.desc: function for TimeTimerTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeTimerTest, TimerTest001, TestSize.Level0)
{
......@@ -58,7 +57,6 @@ HWTEST_F(TimeTimerTest, TimerTest001, TestSize.Level0)
* @tc.name: TimerTest002
* @tc.desc: function for TimeTimerTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeTimerTest, TimerTest002, TestSize.Level0)
{
......@@ -69,7 +67,6 @@ HWTEST_F(TimeTimerTest, TimerTest002, TestSize.Level0)
* @tc.name: TimerTest003
* @tc.desc: function for TimeTimerTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeTimerTest, TimerTest003, TestSize.Level0)
{
......@@ -80,7 +77,6 @@ HWTEST_F(TimeTimerTest, TimerTest003, TestSize.Level0)
* @tc.name: TimerTest005
* @tc.desc: function for timer_create SIGEV_THREAD.
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeTimerTest, TimerTest005, TestSize.Level0)
{
......@@ -91,7 +87,6 @@ HWTEST_F(TimeTimerTest, TimerTest005, TestSize.Level0)
* @tc.name: TIME_TEST_TZSET_001
* @tc.desc: function for TIME_TEST_TZSET_001
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeTimerTest, TIME_TEST_TZSET_001, TestSize.Level0)
{
......@@ -102,7 +97,6 @@ HWTEST_F(TimeTimerTest, TIME_TEST_TZSET_001, TestSize.Level0)
* @tc.name: TIME_TEST_TZSET_002
* @tc.desc: function for TimeTimerTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(TimeTimerTest, TIME_TEST_TZSET_002, TestSize.Level0)
{
......
......@@ -78,7 +78,7 @@ static UINT32 TestCase(VOID)
if (value) {
countErr++;
} else {
countErr++;
countRight++;
}
break;
default:
......
......@@ -46,7 +46,6 @@ public:
* @tc.name: IT_TEST_UTIL_001
* @tc.desc: function for UtilTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(UtilTest, ItTestUtil001, TestSize.Level0)
{
......@@ -57,7 +56,6 @@ HWTEST_F(UtilTest, ItTestUtil001, TestSize.Level0)
* @tc.name: IT_TEST_UTIL_002
* @tc.desc: function for UtilTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(UtilTest, ItTestUtil002, TestSize.Level0)
{
......@@ -68,7 +66,6 @@ HWTEST_F(UtilTest, ItTestUtil002, TestSize.Level0)
* @tc.name: IT_TEST_UTIL_003
* @tc.desc: function for UtilTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(UtilTest, ItTestUtil003, TestSize.Level0)
{
......@@ -79,7 +76,6 @@ HWTEST_F(UtilTest, ItTestUtil003, TestSize.Level0)
* @tc.name: IT_TEST_UTIL_004
* @tc.desc: function for UtilTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(UtilTest, ItTestUtil004, TestSize.Level0)
{
......@@ -90,7 +86,6 @@ HWTEST_F(UtilTest, ItTestUtil004, TestSize.Level0)
* @tc.name: IT_TEST_UTIL_005
* @tc.desc: function for UtilTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(UtilTest, ItTestUtil005, TestSize.Level0)
{
......@@ -101,7 +96,6 @@ HWTEST_F(UtilTest, ItTestUtil005, TestSize.Level0)
* @tc.name: IT_TEST_UTIL_006
* @tc.desc: function for UtilTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(UtilTest, ItTestUtil006, TestSize.Level0)
{
......@@ -112,7 +106,6 @@ HWTEST_F(UtilTest, ItTestUtil006, TestSize.Level0)
* @tc.name: IT_TEST_UTIL_007
* @tc.desc: function for UtilTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(UtilTest, ItTestUtil007, TestSize.Level0)
{
......@@ -123,7 +116,6 @@ HWTEST_F(UtilTest, ItTestUtil007, TestSize.Level0)
* @tc.name: IT_TEST_UTIL_101
* @tc.desc: function for UtilTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(UtilTest, ItTestUtil101, TestSize.Level0)
{
......
......@@ -54,7 +54,6 @@ public:
* @tc.name: NetNetDbTest001
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest001, TestSize.Level0)
{
......@@ -65,7 +64,6 @@ HWTEST_F(NetDbTest, NetNetDbTest001, TestSize.Level0)
* @tc.name: NetNetDbTest013
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest013, TestSize.Level0)
{
......@@ -79,7 +77,6 @@ HWTEST_F(NetDbTest, NetNetDbTest013, TestSize.Level0)
* @tc.name: NetNetDbTest018
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest018, TestSize.Level0)
{
......@@ -90,7 +87,6 @@ HWTEST_F(NetDbTest, NetNetDbTest018, TestSize.Level0)
* @tc.name: NetNetDbTest002
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest002, TestSize.Level0)
{
......@@ -101,7 +97,6 @@ HWTEST_F(NetDbTest, NetNetDbTest002, TestSize.Level0)
* @tc.name: NetNetDbTest003
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest003, TestSize.Level0)
{
......@@ -112,7 +107,6 @@ HWTEST_F(NetDbTest, NetNetDbTest003, TestSize.Level0)
* @tc.name: NetNetDbTest004
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest004, TestSize.Level0)
{
......@@ -123,7 +117,6 @@ HWTEST_F(NetDbTest, NetNetDbTest004, TestSize.Level0)
* @tc.name: NetNetDbTest006
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest006, TestSize.Level0)
{
......@@ -134,7 +127,6 @@ HWTEST_F(NetDbTest, NetNetDbTest006, TestSize.Level0)
* @tc.name: NetNetDbTest007
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest007, TestSize.Level0)
{
......@@ -145,7 +137,6 @@ HWTEST_F(NetDbTest, NetNetDbTest007, TestSize.Level0)
* @tc.name: NetNetDbTest008
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest008, TestSize.Level0)
{
......@@ -156,7 +147,6 @@ HWTEST_F(NetDbTest, NetNetDbTest008, TestSize.Level0)
* @tc.name: NetNetDbTest009
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest009, TestSize.Level0)
{
......@@ -167,7 +157,6 @@ HWTEST_F(NetDbTest, NetNetDbTest009, TestSize.Level0)
* @tc.name: NetNetDbTest010
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest010, TestSize.Level0)
{
......@@ -178,7 +167,6 @@ HWTEST_F(NetDbTest, NetNetDbTest010, TestSize.Level0)
* @tc.name: NetNetDbTest011
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest011, TestSize.Level0)
{
......@@ -189,7 +177,6 @@ HWTEST_F(NetDbTest, NetNetDbTest011, TestSize.Level0)
* @tc.name: NetNetDbTest012
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest012, TestSize.Level0)
{
......@@ -200,7 +187,6 @@ HWTEST_F(NetDbTest, NetNetDbTest012, TestSize.Level0)
* @tc.name: NetNetDbTest015
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest015, TestSize.Level0)
{
......@@ -211,7 +197,6 @@ HWTEST_F(NetDbTest, NetNetDbTest015, TestSize.Level0)
* @tc.name: NetNetDbTest016
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest016, TestSize.Level0)
{
......@@ -222,7 +207,6 @@ HWTEST_F(NetDbTest, NetNetDbTest016, TestSize.Level0)
* @tc.name: NetNetDbTest017
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest017, TestSize.Level0)
{
......@@ -233,7 +217,6 @@ HWTEST_F(NetDbTest, NetNetDbTest017, TestSize.Level0)
* @tc.name: NetNetDbTest019
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest019, TestSize.Level0)
{
......@@ -244,7 +227,6 @@ HWTEST_F(NetDbTest, NetNetDbTest019, TestSize.Level0)
* @tc.name: NetNetDbTest020
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest020, TestSize.Level0)
{
......@@ -255,7 +237,6 @@ HWTEST_F(NetDbTest, NetNetDbTest020, TestSize.Level0)
* @tc.name: NetNetDbTest021
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest021, TestSize.Level0)
{
......@@ -266,7 +247,6 @@ HWTEST_F(NetDbTest, NetNetDbTest021, TestSize.Level0)
* @tc.name: NetNetDbTest022
* @tc.desc: function for NetDbTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetDbTest, NetNetDbTest022, TestSize.Level0)
{
......
......@@ -57,7 +57,6 @@ public:
* @tc.name: NetResolvTest001
* @tc.desc: function for NetResolvTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetResolvTest, NetResolvTest001, TestSize.Level0)
{
......@@ -68,7 +67,6 @@ HWTEST_F(NetResolvTest, NetResolvTest001, TestSize.Level0)
* @tc.name: NetResolvTest002
* @tc.desc: function for NetResolvTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetResolvTest, NetResolvTest002, TestSize.Level0)
{
......@@ -79,7 +77,6 @@ HWTEST_F(NetResolvTest, NetResolvTest002, TestSize.Level0)
* @tc.name: NetResolvTest003
* @tc.desc: function for NetResolvTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetResolvTest, NetResolvTest003, TestSize.Level0)
{
......@@ -90,7 +87,6 @@ HWTEST_F(NetResolvTest, NetResolvTest003, TestSize.Level0)
* @tc.name: NetResolvTest006
* @tc.desc: function for NetResolvTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetResolvTest, NetResolvTest006, TestSize.Level0)
{
......@@ -101,7 +97,6 @@ HWTEST_F(NetResolvTest, NetResolvTest006, TestSize.Level0)
* @tc.name: NetResolvTest007
* @tc.desc: function for NetResolvTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetResolvTest, NetResolvTest007, TestSize.Level0)
{
......
......@@ -56,7 +56,6 @@ public:
* @tc.name: NetSocketTest001
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest001, TestSize.Level0)
{
......@@ -67,7 +66,6 @@ HWTEST_F(NetSocketTest, NetSocketTest001, TestSize.Level0)
* @tc.name: NetSocketTest002
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest002, TestSize.Level0)
{
......@@ -79,7 +77,6 @@ HWTEST_F(NetSocketTest, NetSocketTest002, TestSize.Level0)
* @tc.name: NetSocketTest003
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest003, TestSize.Level0)
{
......@@ -91,7 +88,6 @@ HWTEST_F(NetSocketTest, NetSocketTest003, TestSize.Level0)
* @tc.name: NetSocketTest004
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest004, TestSize.Level0)
{
......@@ -102,7 +98,6 @@ HWTEST_F(NetSocketTest, NetSocketTest004, TestSize.Level0)
* @tc.name: NetSocketTest005
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest005, TestSize.Level0)
{
......@@ -113,7 +108,6 @@ HWTEST_F(NetSocketTest, NetSocketTest005, TestSize.Level0)
* @tc.name: NetSocketTest006
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest006, TestSize.Level0)
{
......@@ -125,7 +119,6 @@ HWTEST_F(NetSocketTest, NetSocketTest006, TestSize.Level0)
* @tc.name: NetSocketTest007
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest007, TestSize.Level0)
{
......@@ -137,7 +130,6 @@ HWTEST_F(NetSocketTest, NetSocketTest007, TestSize.Level0)
* @tc.name: NetSocketTest008
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest008, TestSize.Level0)
{
......@@ -148,7 +140,6 @@ HWTEST_F(NetSocketTest, NetSocketTest008, TestSize.Level0)
* @tc.name: NetSocketTest009
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest009, TestSize.Level0)
{
......@@ -159,7 +150,6 @@ HWTEST_F(NetSocketTest, NetSocketTest009, TestSize.Level0)
* @tc.name: NetSocketTest010
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest010, TestSize.Level0)
{
......@@ -170,7 +160,6 @@ HWTEST_F(NetSocketTest, NetSocketTest010, TestSize.Level0)
* @tc.name: NetSocketTest011
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest011, TestSize.Level0)
{
......@@ -181,7 +170,6 @@ HWTEST_F(NetSocketTest, NetSocketTest011, TestSize.Level0)
* @tc.name: NetSocketTest012
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(NetSocketTest, NetSocketTest012, TestSize.Level0)
{
......@@ -192,7 +180,6 @@ HWTEST_F(NetSocketTest, NetSocketTest012, TestSize.Level0)
* @tc.name: NetSocketTest013
* @tc.desc: function for NetSocketTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
/*
HWTEST_F(NetSocketTest, NetSocketTest013, TestSize.Level0)
......
......@@ -75,7 +75,6 @@ public:
* @tc.name: it_test_process_001
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess001, TestSize.Level0)
{
......@@ -86,7 +85,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess001, TestSize.Level0)
* @tc.name: it_test_process_002
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess002, TestSize.Level0)
{
......@@ -97,7 +95,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess002, TestSize.Level0)
* @tc.name: it_test_process_004
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess004, TestSize.Level0)
{
......@@ -108,7 +105,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess004, TestSize.Level0)
* @tc.name: it_test_process_005
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess005, TestSize.Level0)
{
......@@ -119,7 +115,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess005, TestSize.Level0)
* @tc.name: it_test_process_006
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess006, TestSize.Level0)
{
......@@ -130,7 +125,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess006, TestSize.Level0)
* @tc.name: it_test_process_008
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess008, TestSize.Level0)
{
......@@ -141,7 +135,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess008, TestSize.Level0)
* @tc.name: it_test_process_010
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess010, TestSize.Level0)
{
......@@ -152,7 +145,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess010, TestSize.Level0)
* @tc.name: it_test_process_009
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess009, TestSize.Level0)
{
......@@ -163,7 +155,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess009, TestSize.Level0)
* @tc.name: it_test_process_011
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess011, TestSize.Level0)
{
......@@ -174,7 +165,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess011, TestSize.Level0)
* @tc.name: it_test_process_012
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess012, TestSize.Level0)
{
......@@ -185,7 +175,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess012, TestSize.Level0)
* @tc.name: it_test_process_013
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess013, TestSize.Level0)
{
......@@ -196,7 +185,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess013, TestSize.Level0)
* @tc.name: it_test_process_014
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess014, TestSize.Level0)
{
......@@ -207,7 +195,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess014, TestSize.Level0)
* @tc.name: it_test_process_015
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess015, TestSize.Level0)
{
......@@ -218,7 +205,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess015, TestSize.Level0)
* @tc.name: it_test_process_016
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess016, TestSize.Level0)
{
......@@ -229,7 +215,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess016, TestSize.Level0)
* @tc.name: it_test_process_017
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess017, TestSize.Level0)
{
......@@ -240,7 +225,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess017, TestSize.Level0)
* @tc.name: it_test_process_018
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess018, TestSize.Level0)
{
......@@ -251,7 +235,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess018, TestSize.Level0)
* @tc.name: it_test_process_019
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess019, TestSize.Level0)
{
......@@ -262,7 +245,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess019, TestSize.Level0)
* @tc.name: it_test_process_020
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess020, TestSize.Level0)
{
......@@ -273,7 +255,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess020, TestSize.Level0)
* @tc.name: it_test_process_021
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess021, TestSize.Level0)
{
......@@ -284,7 +265,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess021, TestSize.Level0)
* @tc.name: it_test_process_022
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess022, TestSize.Level0)
{
......@@ -295,7 +275,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess022, TestSize.Level0)
* @tc.name: it_test_process_023
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess023, TestSize.Level0)
{
......@@ -306,7 +285,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess023, TestSize.Level0)
* @tc.name: it_test_process_024
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess024, TestSize.Level0)
{
......@@ -317,7 +295,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess024, TestSize.Level0)
* @tc.name: it_test_process_025
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess025, TestSize.Level0)
{
......@@ -328,7 +305,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess025, TestSize.Level0)
* @tc.name: it_test_process_026
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess026, TestSize.Level0)
{
......@@ -339,7 +315,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess026, TestSize.Level0)
* @tc.name: it_test_process_027
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess027, TestSize.Level0)
{
......@@ -350,7 +325,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess027, TestSize.Level0)
* @tc.name: it_test_process_029
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess029, TestSize.Level0)
{
......@@ -361,7 +335,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess029, TestSize.Level0)
* @tc.name: it_test_process_030
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess030, TestSize.Level0)
{
......@@ -372,7 +345,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess030, TestSize.Level0)
* @tc.name: it_test_process_038
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess038, TestSize.Level0)
{
......@@ -383,7 +355,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess038, TestSize.Level0)
* @tc.name: it_test_process_039
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess039, TestSize.Level0)
{
......@@ -394,7 +365,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess039, TestSize.Level0)
* @tc.name: it_test_process_043
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess043, TestSize.Level0)
{
......@@ -405,7 +375,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess043, TestSize.Level0)
* @tc.name: it_test_process_044
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess044, TestSize.Level0)
{
......@@ -416,7 +385,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess044, TestSize.Level0)
* @tc.name: it_test_process_045
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: DTS202101040I5J4KP0H00
*/
HWTEST_F(ProcessProcessTest, ItTestProcess045, TestSize.Level0)
{
......@@ -427,7 +395,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess045, TestSize.Level0)
* @tc.name: it_test_process_046
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: DTS202101040I5J4KP0H00
*/
HWTEST_F(ProcessProcessTest, ItTestProcess046, TestSize.Level0)
{
......@@ -438,7 +405,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess046, TestSize.Level0)
* @tc.name: it_test_process_047
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: DTS202101040I5J4KP0H00
*/
HWTEST_F(ProcessProcessTest, ItTestProcess047, TestSize.Level0)
{
......@@ -449,7 +415,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess047, TestSize.Level0)
* @tc.name: it_test_process_048
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: DTS202101040I5J4KP0H00
*/
HWTEST_F(ProcessProcessTest, ItTestProcess048, TestSize.Level0)
{
......@@ -460,7 +425,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess048, TestSize.Level0)
* @tc.name: it_test_process_054
* @tc.desc: function for waitid: The waitid parameter is incorrect and the error code is verified.
* @tc.type: FUNC
* @tc.require: AR000E0QAB
*/
HWTEST_F(ProcessProcessTest, ItTestProcess054, TestSize.Level0)
{
......@@ -471,7 +435,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess054, TestSize.Level0)
* @tc.name: it_test_process_061
* @tc.desc: function for killpg: The killpg parameter is incorrect and the error code is verified.
* @tc.type: FUNC
* @tc.require: AR000E0QAB
*/
HWTEST_F(ProcessProcessTest, ItTestProcess061, TestSize.Level0)
{
......@@ -483,7 +446,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess061, TestSize.Level0)
* @tc.name: it_test_process_smp_001
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcessSmp001, TestSize.Level0)
{
......@@ -494,7 +456,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcessSmp001, TestSize.Level0)
* @tc.name: it_test_process_smp_002
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcessSmp002, TestSize.Level0)
{
......@@ -505,7 +466,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcessSmp002, TestSize.Level0)
* @tc.name: it_test_process_smp_003
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcessSmp003, TestSize.Level0)
{
......@@ -516,7 +476,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcessSmp003, TestSize.Level0)
* @tc.name: it_test_process_smp_004
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcessSmp004, TestSize.Level0)
{
......@@ -527,7 +486,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcessSmp004, TestSize.Level0)
* @tc.name: it_test_process_smp_005
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcessSmp005, TestSize.Level0)
{
......@@ -538,7 +496,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcessSmp005, TestSize.Level0)
* @tc.name: it_test_process_smp_006
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcessSmp006, TestSize.Level0)
{
......@@ -549,7 +506,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcessSmp006, TestSize.Level0)
* @tc.name: it_test_process_smp_007
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcessSmp007, TestSize.Level0)
{
......@@ -560,7 +516,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcessSmp007, TestSize.Level0)
* @tc.name: it_test_process_smp_008
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcessSmp008, TestSize.Level0)
{
......@@ -574,7 +529,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcessSmp008, TestSize.Level0)
* @tc.name: it_test_process_007
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess007, TestSize.Level0)
{
......@@ -585,7 +539,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess007, TestSize.Level0)
* @tc.name: it_test_process_031
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess031, TestSize.Level0)
{
......@@ -596,7 +549,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess031, TestSize.Level0)
* @tc.name: it_test_process_032
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess032, TestSize.Level0)
{
......@@ -607,7 +559,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess032, TestSize.Level0)
* @tc.name: it_test_process_033
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess033, TestSize.Level0)
{
......@@ -618,7 +569,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess033, TestSize.Level0)
* @tc.name: it_test_process_034
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess034, TestSize.Level0)
{
......@@ -629,7 +579,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess034, TestSize.Level0)
* @tc.name: it_test_process_035
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess035, TestSize.Level0)
{
......@@ -640,7 +589,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess035, TestSize.Level0)
* @tc.name: it_test_process_036
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess036, TestSize.Level0)
{
......@@ -651,7 +599,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess036, TestSize.Level0)
* @tc.name: it_test_process_037
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess037, TestSize.Level0)
{
......@@ -662,7 +609,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess037, TestSize.Level0)
* @tc.name: it_test_process_040
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess040, TestSize.Level0)
{
......@@ -673,7 +619,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess040, TestSize.Level0)
* @tc.name: it_test_process_041
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess041, TestSize.Level0)
{
......@@ -684,7 +629,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess041, TestSize.Level0)
* @tc.name: it_test_process_042
* @tc.desc: function for ProcessProcessTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessProcessTest, ItTestProcess042, TestSize.Level0)
{
......@@ -696,7 +640,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess042, TestSize.Level0)
* @tc.desc: function for killpg:Sends a signal to the process group,
* Other processes in the process group can receive the signal.
* @tc.type: FUNC
* @tc.require: AR000E0QAB
*/
HWTEST_F(ProcessProcessTest, ItTestProcess053, TestSize.Level0)
{
......@@ -707,7 +650,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess053, TestSize.Level0)
* @tc.name: it_test_process_055
* @tc.desc: function for waitid:To test the function of transferring different parameters of the waitid.
* @tc.type: FUNC
* @tc.require: AR000E0QAB
*/
HWTEST_F(ProcessProcessTest, ItTestProcess055, TestSize.Level0)
{
......@@ -719,7 +661,6 @@ HWTEST_F(ProcessProcessTest, ItTestProcess055, TestSize.Level0)
* @tc.desc: function for killpg:Fork two processes. The killpg sends a signal to the current process group.
* The other two processes can receive the signal.
* @tc.type: FUNC
* @tc.require: AR000E0QAB
*/
HWTEST_F(ProcessProcessTest, ItTestProcess062, TestSize.Level0)
{
......
......@@ -70,11 +70,11 @@ static int Child(void)
ret = wait(&status);
status = WEXITSTATUS(status);
if (ret != pid) {
printf("wait child %d failed, is %u!\n", pid, ret);
printf("wait child %d failed, is %d!\n", pid, ret);
exit(__LINE__);
}
if (status != 255) { // 255, assert that function Result is equal to this.
printf("wait child status is 255, but is %d, child is error line :%d \n", status, status);
printf("child is error line :%d \n", status);
exit(__LINE__);
}
} else {
......
......@@ -56,7 +56,6 @@ public:
* @tc.name: it_test_pthread_003
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread003, TestSize.Level0)
{
......@@ -68,7 +67,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread003, TestSize.Level0)
* @tc.name: it_test_pthread_006
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread006, TestSize.Level0)
{
......@@ -80,7 +78,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread006, TestSize.Level0)
* @tc.name: it_test_pthread_007
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread007, TestSize.Level0)
{
......@@ -91,7 +88,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread007, TestSize.Level0)
* @tc.name: it_test_pthread_008
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread008, TestSize.Level0)
{
......@@ -102,7 +98,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread008, TestSize.Level0)
* @tc.name: it_test_pthread_009
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread009, TestSize.Level0)
{
......@@ -114,7 +109,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread009, TestSize.Level0)
* @tc.name: it_test_pthread_010
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread010, TestSize.Level0)
{
......@@ -126,7 +120,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread010, TestSize.Level0)
* @tc.name: it_test_pthread_011
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread011, TestSize.Level0)
{
......@@ -137,7 +130,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread011, TestSize.Level0)
* @tc.name: it_test_pthread_012
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread012, TestSize.Level0)
{
......@@ -148,7 +140,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread012, TestSize.Level0)
* @tc.name: it_test_pthread_013
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread013, TestSize.Level0)
{
......@@ -159,7 +150,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread013, TestSize.Level0)
* @tc.name: it_test_pthread_015
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread015, TestSize.Level0)
{
......@@ -170,7 +160,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread015, TestSize.Level0)
* @tc.name: it_test_pthread_016
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread016, TestSize.Level0)
{
......@@ -181,7 +170,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread016, TestSize.Level0)
* @tc.name: it_test_pthread_018
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread018, TestSize.Level0)
{
......@@ -192,7 +180,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread018, TestSize.Level0)
* @tc.name: it_test_pthread_019
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread019, TestSize.Level0)
{
......@@ -203,7 +190,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread019, TestSize.Level0)
* @tc.name: it_test_pthread_017
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread017, TestSize.Level0)
{
......@@ -215,7 +201,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread017, TestSize.Level0)
* @tc.name: it_test_pthread_once_001
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthreadOnce001, TestSize.Level0)
{
......@@ -226,7 +211,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthreadOnce001, TestSize.Level0)
* @tc.name: it_test_pthread_atfork_001
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthreadAtfork001, TestSize.Level0)
{
......@@ -237,7 +221,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthreadAtfork001, TestSize.Level0)
* @tc.name: it_test_pthread_atfork_002
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthreadAtfork002, TestSize.Level0)
{
......@@ -248,7 +231,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthreadAtfork002, TestSize.Level0)
* @tc.name: it_test_pthread_cond_001
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthreadCond001, TestSize.Level0)
{
......@@ -259,7 +241,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthreadCond001, TestSize.Level0)
* @tc.name: it_test_pthread_cond_002
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthreadCond002, TestSize.Level0)
{
......@@ -270,7 +251,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthreadCond002, TestSize.Level0)
* @tc.name: it_test_pthread_cond_003
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthreadCond003, TestSize.Level0)
{
......@@ -281,7 +261,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthreadCond003, TestSize.Level0)
* @tc.name: it_test_pthread_cond_004
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthreadCond004, TestSize.Level0)
{
......@@ -295,7 +274,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthreadCond004, TestSize.Level0)
* @tc.name: it_test_pthread_001
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread001, TestSize.Level0)
{
......@@ -307,7 +285,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread001, TestSize.Level0)
* @tc.name: it_test_pthread_002
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread002, TestSize.Level0)
{
......@@ -318,7 +295,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread002, TestSize.Level0)
* @tc.name: it_test_pthread_004
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread004, TestSize.Level0)
{
......@@ -329,7 +305,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread004, TestSize.Level0)
* @tc.name: it_test_pthread_005
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread005, TestSize.Level0)
{
......@@ -341,7 +316,6 @@ HWTEST_F(ProcessPthreadTest, ItTestPthread005, TestSize.Level0)
* @tc.name: it_test_pthread_014
* @tc.desc: function for ProcessPthreadTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessPthreadTest, ItTestPthread014, TestSize.Level0)
{
......
......@@ -51,8 +51,8 @@ void child1(void)
}
if (newPolicy != policy || pri != param.sched_priority) {
printf("pthread_getschedparam failed ! %d policy %d newPolicy pri %d param.sched_priority :%d\n", __LINE__,
policy, newPolicy, pri, param.sched_priority);
printf("pthread_getschedparam failed ! %d policy %d newPolicy %d pri %d param.sched_priority :%d\n",
__LINE__, policy, newPolicy, pri, param.sched_priority);
exit(255); // 255, set a special exit code.
}
......
......@@ -54,7 +54,6 @@ public:
* @tc.name: it_test_pthread_mutex_001
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex001, TestSize.Level0)
{
......@@ -65,7 +64,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex001, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_002
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex002, TestSize.Level0)
{
......@@ -76,7 +74,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex002, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_003
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex003, TestSize.Level0)
{
......@@ -87,7 +84,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex003, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_004
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex004, TestSize.Level0)
{
......@@ -98,7 +94,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex004, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_005
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex005, TestSize.Level0)
{
......@@ -109,7 +104,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex005, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_006
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex006, TestSize.Level0)
{
......@@ -120,7 +114,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex006, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_007
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex007, TestSize.Level0)
{
......@@ -131,7 +124,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex007, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_008
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex008, TestSize.Level0)
{
......@@ -142,7 +134,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex008, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_009
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex009, TestSize.Level0)
{
......@@ -153,7 +144,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex009, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_010
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex010, TestSize.Level0)
{
......@@ -164,7 +154,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex010, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_011
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex011, TestSize.Level0)
{
......@@ -175,7 +164,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex011, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_012
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex012, TestSize.Level0)
{
......@@ -186,7 +174,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex012, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_013
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex013, TestSize.Level0)
{
......@@ -197,7 +184,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex013, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_014
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex014, TestSize.Level0)
{
......@@ -208,7 +194,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex014, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_015
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex015, TestSize.Level0)
{
......@@ -219,7 +204,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex015, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_016
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex016, TestSize.Level0)
{
......@@ -230,7 +214,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex016, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_017
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex017, TestSize.Level0)
{
......@@ -242,7 +225,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex017, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_019
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex019, TestSize.Level0)
{
......@@ -254,7 +236,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex019, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_020
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex020, TestSize.Level0)
{
......@@ -265,7 +246,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex020, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_021
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex021, TestSize.Level0)
{
......@@ -276,7 +256,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex021, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_022
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex022, TestSize.Level0)
{
......@@ -290,7 +269,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex022, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_018
* @tc.desc: function for ProcessMutexTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex018, TestSize.Level0)
{
......@@ -302,7 +280,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex018, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_023
* @tc.desc: function for test mutexattr robust
* @tc.type: FUNC
* @tc.require: AR000E0QAB
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex023, TestSize.Level0)
{
......@@ -313,7 +290,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex023, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_024
* @tc.desc: function for test mutexattr robust:error return value
* @tc.type: FUNC
* @tc.require: AR000E0QAB
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex024, TestSize.Level0)
{
......@@ -324,7 +300,6 @@ HWTEST_F(ProcessMutexTest, ItTestPthreadMutex024, TestSize.Level0)
* @tc.name: it_test_pthread_mutex_025
* @tc.desc: test mutexattr robust:robustness product deadlock is not set
* @tc.type: FUNC
* @tc.require: AR000E0QAB
*/
HWTEST_F(ProcessMutexTest, ItTestPthreadMutex025, TestSize.Level0)
{
......
......@@ -46,7 +46,6 @@ public:
* @tc.name: it_test_pthread_rwlock_001
* @tc.desc: function for ProcessRwlockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessRwlockTest, ItTestPthreadRwlock001, TestSize.Level0)
{
......@@ -59,7 +58,6 @@ HWTEST_F(ProcessRwlockTest, ItTestPthreadRwlock001, TestSize.Level0)
* @tc.name: it_test_pthread_rwlock_002
* @tc.desc: function for ProcessRwlockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessRwlockTest, ItTestPthreadRwlock002, TestSize.Level0)
{
......
......@@ -46,7 +46,6 @@ public:
* @tc.name: it_test_pthread_spinlock_001
* @tc.desc: function for ProcessSpinlockTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(ProcessSpinlockTest, ItTestPthreadSpinlock001, TestSize.Level0)
{
......
......@@ -47,7 +47,6 @@ public:
* @tc.name: It_Test_Cap_001
* @tc.desc: function for SecurityCapbilityTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SecurityCapabilityTest, ItTestCap001, TestSize.Level0)
{
......
......@@ -47,7 +47,6 @@ public:
* @tc.name: ItTestReugid001
* @tc.desc: function for SecurityReugidTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SecurityReugidTest, ItTestReugid001, TestSize.Level0)
{
......
......@@ -47,7 +47,6 @@ public:
* @tc.name: It_Sec_Vid_001
* @tc.desc: function for SecurityVidTest
* @tc.type: FUNC
* @tc.require: AR000EEMQ9
*/
HWTEST_F(SecurityVidTest, ItSecVid001, TestSize.Level0)
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册